| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "content/public/browser/browser_context.h" | 5 #include "content/public/browser/browser_context.h" |
| 6 | 6 |
| 7 #include "content/browser/appcache/chrome_appcache_service.h" | 7 #include "content/browser/appcache/chrome_appcache_service.h" |
| 8 #include "content/browser/file_system/browser_file_system_helper.h" | 8 #include "content/browser/fileapi/browser_file_system_helper.h" |
| 9 #include "content/browser/in_process_webkit/dom_storage_context_impl.h" | 9 #include "content/browser/in_process_webkit/dom_storage_context_impl.h" |
| 10 #include "content/browser/in_process_webkit/indexed_db_context_impl.h" | 10 #include "content/browser/in_process_webkit/indexed_db_context_impl.h" |
| 11 #include "content/browser/resource_context_impl.h" | 11 #include "content/browser/resource_context_impl.h" |
| 12 #include "content/public/browser/browser_thread.h" | 12 #include "content/public/browser/browser_thread.h" |
| 13 #include "content/public/common/content_constants.h" | 13 #include "content/public/common/content_constants.h" |
| 14 #include "net/base/cookie_monster.h" | 14 #include "net/base/cookie_monster.h" |
| 15 #include "net/base/cookie_store.h" | 15 #include "net/base/cookie_store.h" |
| 16 #include "net/url_request/url_request_context.h" | 16 #include "net/url_request/url_request_context.h" |
| 17 #include "webkit/database/database_tracker.h" | 17 #include "webkit/database/database_tracker.h" |
| 18 #include "webkit/quota/quota_manager.h" | 18 #include "webkit/quota/quota_manager.h" |
| (...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 BrowserThread::IsMessageLoopValid(BrowserThread::WEBKIT_DEPRECATED)) { | 252 BrowserThread::IsMessageLoopValid(BrowserThread::WEBKIT_DEPRECATED)) { |
| 253 DOMStorageContext* dom_storage_context = | 253 DOMStorageContext* dom_storage_context = |
| 254 (static_cast<UserDataAdapter<DOMStorageContext>*>( | 254 (static_cast<UserDataAdapter<DOMStorageContext>*>( |
| 255 GetUserData(kDOMStorageContextKeyName)))->release(); | 255 GetUserData(kDOMStorageContextKeyName)))->release(); |
| 256 BrowserThread::ReleaseSoon( | 256 BrowserThread::ReleaseSoon( |
| 257 BrowserThread::WEBKIT_DEPRECATED, FROM_HERE, dom_storage_context); | 257 BrowserThread::WEBKIT_DEPRECATED, FROM_HERE, dom_storage_context); |
| 258 } | 258 } |
| 259 } | 259 } |
| 260 | 260 |
| 261 } // namespace content | 261 } // namespace content |
| OLD | NEW |