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

Unified Diff: content/public/browser/browser_context.h

Issue 9467016: Get rid of WebKitContext. Only two out of six HTML5 related objects were in it and it was just a gl… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: fix bug Created 8 years, 10 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
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/dom_storage_context.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/public/browser/browser_context.h
===================================================================
--- content/public/browser/browser_context.h (revision 123509)
+++ content/public/browser/browser_context.h (working copy)
@@ -32,12 +32,13 @@
}
class FilePath;
-class WebKitContext;
namespace content {
+class DOMStorageContext;
class DownloadManager;
class GeolocationPermissionContext;
+class IndexedDBContext;
class ResourceContext;
class SpeechInputPreferences;
@@ -45,9 +46,10 @@
// It lives on the UI thread.
class CONTENT_EXPORT BrowserContext : public base::SupportsUserData {
public:
- // Getter for the QuotaManager associated with the given BrowserContext.
static quota::QuotaManager* GetQuotaManager(BrowserContext* browser_context);
- static WebKitContext* GetWebKitContext(BrowserContext* browser_context);
+ static DOMStorageContext* GetDOMStorageContext(
+ BrowserContext* browser_context);
+ static IndexedDBContext* GetIndexedDBContext(BrowserContext* browser_context);
static webkit_database::DatabaseTracker* GetDatabaseTracker(
BrowserContext* browser_context);
static appcache::AppCacheService* GetAppCacheService(
« no previous file with comments | « content/content_browser.gypi ('k') | content/public/browser/dom_storage_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698