Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1587)

Unified Diff: chrome/browser/ui/webui/quota_internals_ui.h

Issue 7084024: Add chrome://quota-internals/ (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Reflect comments, move QuotaInternals{MessageHandler,Proxy} to .cc. Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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_
-
« no previous file with comments | « no previous file | chrome/browser/ui/webui/quota_internals_ui.cc » ('j') | chrome/browser/ui/webui/quota_internals_ui.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698