HomeSort by relevance Sort by last modified time
    Searched defs:WebRect (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/chrome/test/chromedriver/
basic_types.cc 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;
    [all...]
basic_types.h 28 struct WebRect {
29 WebRect();
30 WebRect(int x, int y, int width, int height);
31 WebRect(const WebPoint& origin, const WebSize& size);
32 ~WebRect();
  /external/chromium_org/third_party/WebKit/public/platform/
WebRect.h 46 struct WebRect {
54 WebRect()
62 WebRect(int x, int y, int width, int height)
71 WebRect(const IntRect& r)
79 WebRect& operator=(const IntRect& r)
93 WebRect(const gfx::Rect& r)
101 WebRect& operator=(const gfx::Rect& r)
117 inline bool operator==(const WebRect& a, const WebRect& b)
122 inline bool operator!=(const WebRect& a, const WebRect& b
    [all...]

Completed in 677 milliseconds