Chromium Code Reviews| Index: chrome/browser/ui/webui/quota_internals_ui.h |
| diff --git a/chrome/browser/ui/webui/quota_internals_ui.h b/chrome/browser/ui/webui/quota_internals_ui.h |
| index c7b90cf0016fd0b930326af699e6eb89b8c786d3..00004aeb0a952cd5243c0b26fbe57d913ce7ad91 100644 |
| --- a/chrome/browser/ui/webui/quota_internals_ui.h |
| +++ b/chrome/browser/ui/webui/quota_internals_ui.h |
| @@ -6,10 +6,16 @@ |
| #define CHROME_BROWSER_UI_WEBUI_QUOTA_INTERNALS_UI_H_ |
| #pragma once |
| +#include <map> |
| +#include <set> |
| #include <string> |
| +#include <utility> |
| +#include <vector> |
| #include "chrome/browser/ui/webui/chrome_url_data_manager.h" |
| #include "content/browser/webui/web_ui.h" |
| +#include "webkit/quota/quota_manager.h" |
| +#include "webkit/quota/quota_types.h" |
|
michaeln
2011/06/01 01:09:32
many of the includes in the .h file don't look nee
tzik
2011/06/03 16:01:19
Done.
|
| class TabContents; |
|
michaeln
2011/06/01 01:09:32
this isn't really needed since it's forward delcar
tzik
2011/06/03 16:01:19
Done.
|
| @@ -22,22 +28,4 @@ class QuotaInternalsUI : public WebUI { |
| DISALLOW_COPY_AND_ASSIGN(QuotaInternalsUI); |
| }; |
|
michaeln
2011/06/01 01:09:32
i think this can melt away to...
#include "conten
tzik
2011/06/03 16:01:19
Done.
|
| -namespace quota_internals { |
| - |
| -class QuotaInternalsHTMLSource : public ChromeURLDataManager::DataSource { |
| - public: |
| - QuotaInternalsHTMLSource(); |
| - virtual void StartDataRequest(const std::string& path, |
| - bool is_incognito, |
| - int request_id) OVERRIDE; |
| - virtual std::string GetMimeType(const std::string&) const; |
| - |
| - private: |
| - virtual ~QuotaInternalsHTMLSource() {} |
| - DISALLOW_COPY_AND_ASSIGN(QuotaInternalsHTMLSource); |
| -}; |
| - |
| -} // namespace quota_internals |
| - |
| #endif // CHROME_BROWSER_UI_WEBUI_QUOTA_INTERNALS_UI_H_ |
| - |