Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4621)

Unified Diff: chrome/test/chromedriver/basic_types.h

Issue 12764021: [chromedriver] Support clicking an element in sub frames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile error. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/test/chromedriver/basic_types.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/chromedriver/basic_types.h
diff --git a/chrome/test/chromedriver/basic_types.h b/chrome/test/chromedriver/basic_types.h
index 8a623c481d3b944f3001b1a620defe9712170ee0..20b8730d7788221e7a87e1d792d8fd8862a81b20 100644
--- a/chrome/test/chromedriver/basic_types.h
+++ b/chrome/test/chromedriver/basic_types.h
@@ -10,7 +10,7 @@ struct WebPoint {
WebPoint(int x, int y);
~WebPoint();
- void offset(int x_, int y_);
+ void Offset(int x_, int y_);
int x;
int y;
@@ -31,10 +31,10 @@ struct WebRect {
WebRect(const WebPoint& origin, const WebSize& size);
~WebRect();
- int x();
- int y();
- int width();
- int height();
+ int X() const;
+ int Y() const;
+ int Width() const;
+ int Height() const;
WebPoint origin;
WebSize size;
« no previous file with comments | « no previous file | chrome/test/chromedriver/basic_types.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698