summaryrefslogtreecommitdiffstats
path: root/chrome/views/dialog_delegate.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/dialog_delegate.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/dialog_delegate.h')
-rw-r--r--chrome/views/dialog_delegate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/views/dialog_delegate.h b/chrome/views/dialog_delegate.h
index c7ee5c0..99b22ec 100644
--- a/chrome/views/dialog_delegate.h
+++ b/chrome/views/dialog_delegate.h
@@ -8,7 +8,7 @@
#include "chrome/views/dialog_client_view.h"
#include "chrome/views/window_delegate.h"
-namespace ChromeViews {
+namespace views {
class NativeButton;
class View;
@@ -59,7 +59,7 @@ class DialogDelegate : public WindowDelegate {
// Override this function if with a view which will be shown in the same
// row as the OK and CANCEL buttons but flush to the left and extending
// up to the buttons.
- virtual ChromeViews::View* GetExtraView() { return NULL; }
+ virtual View* GetExtraView() { return NULL; }
// Returns the default dialog button. This should not be a mask as only one
// button should ever be the default button. Return DIALOGBUTTON_NONE if
@@ -107,7 +107,7 @@ class DialogDelegate : public WindowDelegate {
DialogClientView* GetDialogClientView() const;
};
-} // namespace ChromeViews
+} // namespace views
#endif // #ifndef CHROME_VIEWS_DIALOG_DELEGATE_H_