diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-24 23:38:12 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-24 23:38:12 +0000 |
commit | c1fff0754fdf74d5b51f397c87ddb4a7f80f3462 (patch) | |
tree | bc797719e89e6b63bfd88c6f215630d7aa014cbf /content/browser/resource_context_impl.h | |
parent | 9e3af36306f756a08b0386c0c340c51914febab4 (diff) | |
download | chromium_src-c1fff0754fdf74d5b51f397c87ddb4a7f80f3462.zip chromium_src-c1fff0754fdf74d5b51f397c87ddb4a7f80f3462.tar.gz chromium_src-c1fff0754fdf74d5b51f397c87ddb4a7f80f3462.tar.bz2 |
Get rid of WebKitContext. Only two out of six HTML5 related objects were in it and it was just a glorified std::pair after the recent refactorings.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9467016
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123588 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/resource_context_impl.h')
-rw-r--r-- | content/browser/resource_context_impl.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/resource_context_impl.h b/content/browser/resource_context_impl.h index 984456a..9e92eaf 100644 --- a/content/browser/resource_context_impl.h +++ b/content/browser/resource_context_impl.h @@ -7,8 +7,8 @@ #include "content/public/browser/resource_context.h" +class IndexedDBContextImpl; class ChromeBlobStorageContext; -class WebKitContext; namespace webkit_database { class DatabaseTracker; @@ -24,7 +24,7 @@ class HostZoomMap; // public API. webkit_database::DatabaseTracker* GetDatabaseTrackerForResourceContext( ResourceContext* resource_context); -WebKitContext* GetWebKitContextForResourceContext( +IndexedDBContextImpl* GetIndexedDBContextForResourceContext( ResourceContext* resource_context); ChromeBlobStorageContext* GetChromeBlobStorageContextForResourceContext( ResourceContext* resource_context); |