diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-13 16:58:25 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-13 16:58:25 +0000 |
commit | e14c959126431fed79d444f5d33c3bd508b20663 (patch) | |
tree | da195fe3316022299b88fce805210deb19c0d270 /chrome/browser/ui/webui/quota_internals_ui.h | |
parent | 5369c1613d344187df6ed2167094435fe04da200 (diff) | |
download | chromium_src-e14c959126431fed79d444f5d33c3bd508b20663.zip chromium_src-e14c959126431fed79d444f5d33c3bd508b20663.tar.gz chromium_src-e14c959126431fed79d444f5d33c3bd508b20663.tar.bz2 |
Start splitting out WebUI into an implementation class and an interface that each page implements. This first patch moves the virtual functions in WebUI that were overridden by pages into a separate interface, content::WebUIController.
BUG=98716
Review URL: http://codereview.chromium.org/9188056
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@117645 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/ui/webui/quota_internals_ui.h')
-rw-r--r-- | chrome/browser/ui/webui/quota_internals_ui.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/ui/webui/quota_internals_ui.h b/chrome/browser/ui/webui/quota_internals_ui.h index dabbda3..786f009 100644 --- a/chrome/browser/ui/webui/quota_internals_ui.h +++ b/chrome/browser/ui/webui/quota_internals_ui.h @@ -7,8 +7,9 @@ #pragma once #include "content/browser/webui/web_ui.h" +#include "content/public/browser/web_ui_controller.h" -class QuotaInternalsUI : public WebUI { +class QuotaInternalsUI : public WebUI, public content::WebUIController { public: explicit QuotaInternalsUI(content::WebContents* contents); virtual ~QuotaInternalsUI() {} |