diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-06 23:44:20 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-06 23:44:20 +0000 |
commit | 21e6caf8cb734cad565e8e23298edaf29f2aaaf0 (patch) | |
tree | d89b7456490e2c4f1b44b18588911f6e84c00913 /chrome/browser/extensions/extension_web_ui.h | |
parent | acb4f32800336c703c40c9ed6c50138e56ec57e1 (diff) | |
download | chromium_src-21e6caf8cb734cad565e8e23298edaf29f2aaaf0.zip chromium_src-21e6caf8cb734cad565e8e23298edaf29f2aaaf0.tar.gz chromium_src-21e6caf8cb734cad565e8e23298edaf29f2aaaf0.tar.bz2 |
Get rid of the ChromeWebUI class and just make all the classes in chrome derive directly from WebUI. I've left the header behind since it now just contains the static functions for MoreWebUI.
BUG=98716
Review URL: http://codereview.chromium.org/9122011
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@116773 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/extensions/extension_web_ui.h')
-rw-r--r-- | chrome/browser/extensions/extension_web_ui.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/extensions/extension_web_ui.h b/chrome/browser/extensions/extension_web_ui.h index d2b714b..3352cff 100644 --- a/chrome/browser/extensions/extension_web_ui.h +++ b/chrome/browser/extensions/extension_web_ui.h @@ -11,8 +11,8 @@ #include "base/memory/scoped_ptr.h" #include "chrome/browser/bookmarks/bookmark_manager_extension_api.h" #include "chrome/browser/favicon/favicon_service.h" -#include "chrome/browser/ui/webui/chrome_web_ui.h" #include "chrome/common/extensions/extension.h" +#include "content/browser/webui/web_ui.h" class GURL; class PrefService; @@ -28,7 +28,7 @@ class Value; // the main tab contents area. For example, each extension can specify an // "options_page", and that page is displayed in the tab contents area and is // hosted by this class. -class ExtensionWebUI : public ChromeWebUI { +class ExtensionWebUI : public WebUI { public: static const char kExtensionURLOverrides[]; |