summaryrefslogtreecommitdiffstats
path: root/chrome/views/event.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 22:25:33 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-17 22:25:33 +0000
commit6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7 (patch)
tree4ce1316dbfd179681bdff905a7d71f1b4cbb902c /chrome/views/event.h
parent4c45708be10906e3cdbe9d40d206cfd3fcbaf1c2 (diff)
downloadchromium_src-6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7.zip
chromium_src-6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7.tar.gz
chromium_src-6f3bb6ca5a2e423fc9dda71c164c7e8ae2a8eae7.tar.bz2
Rename legacy methods that were in CamelCase to unix_hacker.
Required going through and modifying some of the code to solve name clashes. Review URL: http://codereview.chromium.org/2945 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2337 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/event.h')
-rw-r--r--chrome/views/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/views/event.h b/chrome/views/event.h
index 074e046..17cbe60 100644
--- a/chrome/views/event.h
+++ b/chrome/views/event.h
@@ -128,12 +128,12 @@ class LocatedEvent : public Event {
LocatedEvent(const LocatedEvent& model, View* from, View* to);
// Returns the X location.
- int GetX() const {
+ int x() const {
return location_.x();
}
// Returns the Y location.
- int GetY() const {
+ int y() const {
return location_.y();
}