chromium/chrome/test/chromedriver/basic_types.cc

// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/test/chromedriver/basic_types.h"

WebPoint::WebPoint() :{}

WebPoint::WebPoint(double x, double y) :{}

WebPoint::~WebPoint() {}

void WebPoint::Offset(double x_, double y_) {}

WebSize::WebSize() :{}

WebSize::WebSize(double width, double height) :{}

WebSize::~WebSize() {}

WebRect::WebRect() :{}

WebRect::WebRect(double x, double y, double width, double height)
    :{}

WebRect::WebRect(const WebPoint& origin, const WebSize& size)
    :{}

WebRect::~WebRect() {}

double WebRect::X() const {}

double WebRect::Y() const {}

double WebRect::Width() const {}

double WebRect::Height() const {}