Index: chrome/browser/chromeos/views/native_menu_domui.h |
diff --git a/chrome/browser/chromeos/views/native_menu_domui.h b/chrome/browser/chromeos/views/native_menu_domui.h |
index 7b79d80376b90c4faf5985c48a8249b67d61997c..717f6a4a6137231ae42027c82ed50e5e8f6dd669 100644 |
--- a/chrome/browser/chromeos/views/native_menu_domui.h |
+++ b/chrome/browser/chromeos/views/native_menu_domui.h |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2010 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 The Chromium Authors. All rights reserved. |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
@@ -11,7 +11,7 @@ |
#include "base/message_loop.h" |
#include "base/observer_list.h" |
#include "base/scoped_ptr.h" |
-#include "chrome/browser/chromeos/dom_ui/domui_menu_control.h" |
+#include "chrome/browser/chromeos/webui_menu_control.h" |
#include "googleurl/src/gurl.h" |
#include "views/controls/menu/menu_wrapper.h" |
@@ -34,11 +34,11 @@ typedef union _XEvent XEvent; |
namespace chromeos { |
class MenuLocator; |
-class DOMUIMenuWidget; |
+class WebUIMenuWidget; |
// A DOMUI implementation of MenuWrapper. |
class NativeMenuDOMUI : public views::MenuWrapper, |
- public DOMUIMenuControl, |
+ public WebUIMenuControl, |
public MessageLoop::Dispatcher { |
public: |
NativeMenuDOMUI(ui::MenuModel* menu_model, bool root); |
@@ -68,7 +68,7 @@ class NativeMenuDOMUI : public views::MenuWrapper, |
XEvent* xevent); |
#endif |
- // Overriden from DOMUIMenuControl; |
+ // Overriden from WebUIMenuControl; |
Avi (use Gerrit)
2011/02/03 15:09:05
Fix spelling of Overridden.
tfarina
2011/02/03 16:37:49
Done.
|
virtual ui::MenuModel* GetMenuModel() { return model_; } |
virtual void Activate(ui::MenuModel* model, |
int index, |
@@ -123,7 +123,7 @@ class NativeMenuDOMUI : public views::MenuWrapper, |
ui::MenuModel* model_; |
// A window widget that draws the content of the menu. |
- DOMUIMenuWidget* menu_widget_; |
+ WebUIMenuWidget* menu_widget_; |
// True if the menu is currently shown. |
// Used only in root. |