Home | History | Annotate | Download | only in chromedriver

Lines Matching defs:WebRect

24 WebRect::WebRect() : origin(0, 0), size(0, 0) {}
26 WebRect::WebRect(int x, int y, int width, int height)
29 WebRect::WebRect(const WebPoint& origin, const WebSize& size)
32 WebRect::~WebRect() {}
34 int WebRect::X() const { return origin.x; }
36 int WebRect::Y() const { return origin.y; }
38 int WebRect::Width() const { return size.width; }
40 int WebRect::Height() const { return size.height; }