diff options
Diffstat (limited to 'content/browser/in_process_webkit/webkit_context.h')
-rw-r--r-- | content/browser/in_process_webkit/webkit_context.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/content/browser/in_process_webkit/webkit_context.h b/content/browser/in_process_webkit/webkit_context.h index 3c324a6..fa2d32d 100644 --- a/content/browser/in_process_webkit/webkit_context.h +++ b/content/browser/in_process_webkit/webkit_context.h @@ -15,7 +15,12 @@ #include "content/browser/in_process_webkit/dom_storage_context.h" #include "content/browser/in_process_webkit/indexed_db_context.h" +namespace base { +class MessageLoopProxy; +} + namespace quota { +class QuotaManagerProxy; class SpecialStoragePolicy; } @@ -30,7 +35,9 @@ class WebKitContext : public base::RefCountedThreadSafe<WebKitContext> { public: WebKitContext(bool is_incognito, const FilePath& data_path, quota::SpecialStoragePolicy* special_storage_policy, - bool clear_local_state_on_exit); + bool clear_local_state_on_exit, + quota::QuotaManagerProxy* quota_manager_proxy, + base::MessageLoopProxy* webkit_thread_loop); const FilePath& data_path() const { return data_path_; } bool is_incognito() const { return is_incognito_; } @@ -78,7 +85,7 @@ class WebKitContext : public base::RefCountedThreadSafe<WebKitContext> { bool clear_local_state_on_exit_; scoped_ptr<DOMStorageContext> dom_storage_context_; - scoped_ptr<IndexedDBContext> indexed_db_context_; + scoped_refptr<IndexedDBContext> indexed_db_context_; DISALLOW_IMPLICIT_CONSTRUCTORS(WebKitContext); }; |