Chromium Code Reviews| Index: content/browser/indexed_db/indexed_db_internals_ui.h |
| diff --git a/content/browser/indexed_db/indexed_db_internals_ui.h b/content/browser/indexed_db/indexed_db_internals_ui.h |
| index a74d67b1da9a4f98482c5377748fd9acc5d5e166..069d82fd1ebc46b14081fe21cdd0d43fa63787ab 100644 |
| --- a/content/browser/indexed_db/indexed_db_internals_ui.h |
| +++ b/content/browser/indexed_db/indexed_db_internals_ui.h |
| @@ -5,8 +5,17 @@ |
| #ifndef CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_INTERNALS_UI_H_ |
| #define CONTENT_BROWSER_INDEXED_DB_INDEXED_DB_INTERNALS_UI_H_ |
| +#include <vector> |
| + |
| +#include "base/memory/ref_counted.h" |
| +#include "base/memory/scoped_ptr.h" |
| +#include "content/public/browser/indexed_db_context.h" |
| #include "content/public/browser/web_ui_controller.h" |
| +namespace base { |
| + class ListValue; |
| +} |
| + |
| namespace content { |
| // The implementation for the chrome://indexeddb-internals page. |
| @@ -16,6 +25,11 @@ class IndexedDBInternalsUI : public WebUIController { |
| virtual ~IndexedDBInternalsUI(); |
| private: |
| + void GetAllOrigins(const base::ListValue* args); |
| + void GetAllOriginsOnWebkitThread(scoped_refptr<IndexedDBContext> context); |
| + void OnOriginsReady(scoped_ptr<std::vector<IndexedDBInfo> > origins); |
| + bool fetching_; |
|
jsbell
2013/04/11 18:56:20
Nit: Add blank line between methods and fields?
(N
|
| + |
| DISALLOW_COPY_AND_ASSIGN(IndexedDBInternalsUI); |
| }; |