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

Side by Side Diff: content/public/browser/browser_context.h

Issue 10764015: Ensure static BrowserContext methods only get called on the UI thread. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix unittests Created 8 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/browser/resource_context_impl.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_
7 #pragma once 7 #pragma once
8 8
9 #include "base/hash_tables.h" 9 #include "base/hash_tables.h"
10 #include "base/supports_user_data.h" 10 #include "base/supports_user_data.h"
(...skipping 26 matching lines...) Expand all
37 37
38 class DOMStorageContext; 38 class DOMStorageContext;
39 class DownloadManager; 39 class DownloadManager;
40 class DownloadManagerDelegate; 40 class DownloadManagerDelegate;
41 class GeolocationPermissionContext; 41 class GeolocationPermissionContext;
42 class IndexedDBContext; 42 class IndexedDBContext;
43 class ResourceContext; 43 class ResourceContext;
44 class SpeechRecognitionPreferences; 44 class SpeechRecognitionPreferences;
45 45
46 // This class holds the context needed for a browsing session. 46 // This class holds the context needed for a browsing session.
47 // It lives on the UI thread. 47 // It lives on the UI thread. All these methods must only be called on the UI
48 // thread.
48 class CONTENT_EXPORT BrowserContext : public base::SupportsUserData { 49 class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
49 public: 50 public:
50 static DownloadManager* GetDownloadManager(BrowserContext* browser_context); 51 static DownloadManager* GetDownloadManager(BrowserContext* browser_context);
51 static quota::QuotaManager* GetQuotaManager(BrowserContext* browser_context); 52 static quota::QuotaManager* GetQuotaManager(BrowserContext* browser_context);
52 static DOMStorageContext* GetDOMStorageContext( 53 static DOMStorageContext* GetDOMStorageContext(
53 BrowserContext* browser_context); 54 BrowserContext* browser_context);
54 static IndexedDBContext* GetIndexedDBContext(BrowserContext* browser_context); 55 static IndexedDBContext* GetIndexedDBContext(BrowserContext* browser_context);
55 static webkit_database::DatabaseTracker* GetDatabaseTracker( 56 static webkit_database::DatabaseTracker* GetDatabaseTracker(
56 BrowserContext* browser_context); 57 BrowserContext* browser_context);
57 static appcache::AppCacheService* GetAppCacheService( 58 static appcache::AppCacheService* GetAppCacheService(
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 struct hash<content::BrowserContext*> { 135 struct hash<content::BrowserContext*> {
135 std::size_t operator()(content::BrowserContext* const& p) const { 136 std::size_t operator()(content::BrowserContext* const& p) const {
136 return reinterpret_cast<std::size_t>(p); 137 return reinterpret_cast<std::size_t>(p);
137 } 138 }
138 }; 139 };
139 140
140 } // namespace BASE_HASH_NAMESPACE 141 } // namespace BASE_HASH_NAMESPACE
141 #endif 142 #endif
142 143
143 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_ 144 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CONTEXT_H_
OLDNEW
« no previous file with comments | « content/browser/resource_context_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698