summaryrefslogtreecommitdiffstats
path: root/chrome/views/button_dropdown.h
diff options
context:
space:
mode:
authorben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
committerben@chromium.org <ben@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2008-10-16 23:51:38 +0000
commitc2dacc9ec41232903ba700c6aef5ef98bfcb8af8 (patch)
tree4aa4d7100862c64bdd92d70e6323001beb19edb7 /chrome/views/button_dropdown.h
parentd66e710ec668e34271def44d7f0416260657171c (diff)
downloadchromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.zip
chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.gz
chromium_src-c2dacc9ec41232903ba700c6aef5ef98bfcb8af8.tar.bz2
Rename ChromeViews namespace to views
http://crbug.com/2188 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@3495 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/views/button_dropdown.h')
-rw-r--r--chrome/views/button_dropdown.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/chrome/views/button_dropdown.h b/chrome/views/button_dropdown.h
index 066d2b9..4f8727d 100644
--- a/chrome/views/button_dropdown.h
+++ b/chrome/views/button_dropdown.h
@@ -11,7 +11,7 @@
class Timer;
-namespace ChromeViews {
+namespace views {
////////////////////////////////////////////////////////////////////////////////
//
@@ -43,10 +43,9 @@ class ButtonDropDown : public Button {
private:
// Overridden from Button
- virtual bool OnMousePressed(const ChromeViews::MouseEvent& e);
- virtual void OnMouseReleased(const ChromeViews::MouseEvent& e,
- bool canceled);
- virtual bool OnMouseDragged(const ChromeViews::MouseEvent& e);
+ virtual bool OnMousePressed(const MouseEvent& e);
+ virtual void OnMouseReleased(const MouseEvent& e, bool canceled);
+ virtual bool OnMouseDragged(const MouseEvent& e);
// Internal function to show the dropdown menu
void ShowDropDownMenu(HWND window);
@@ -63,7 +62,7 @@ class ButtonDropDown : public Button {
DISALLOW_EVIL_CONSTRUCTORS(ButtonDropDown);
};
-} // namespace
+} // namespace views
#endif // CHROME_VIEWS_BUTTON_DROPDOWN_H__