diff options
author | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-16 03:23:41 +0000 |
---|---|---|
committer | dgrogan@chromium.org <dgrogan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-02-16 03:23:41 +0000 |
commit | da42ba8ef3cdfa08aeb5673122da9ee7d636bae4 (patch) | |
tree | ab3947ed978e6ddc206b0c29c150b4eb2707bd65 /content/public | |
parent | addf1cd069dbd50abaae4e7ca5b7eb146e20ae4f (diff) | |
download | chromium_src-da42ba8ef3cdfa08aeb5673122da9ee7d636bae4.zip chromium_src-da42ba8ef3cdfa08aeb5673122da9ee7d636bae4.tar.gz chromium_src-da42ba8ef3cdfa08aeb5673122da9ee7d636bae4.tar.bz2 |
Get IPC working for Indexed DB in shared workers.
BUG=112855
TEST=
Review URL: http://codereview.chromium.org/9375024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@122231 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/browser/resource_context.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/content/public/browser/resource_context.h b/content/public/browser/resource_context.h index bda249f..7ad6097 100644 --- a/content/public/browser/resource_context.h +++ b/content/public/browser/resource_context.h @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -11,6 +11,7 @@ class AudioManager; class ChromeAppCacheService; class ChromeBlobStorageContext; class MediaObserver; +class WebKitContext; namespace fileapi { class FileSystemContext; } // namespace fileapi @@ -50,6 +51,7 @@ class ResourceContext { virtual MediaObserver* GetMediaObserver() = 0; virtual media_stream::MediaStreamManager* GetMediaStreamManager() = 0; virtual AudioManager* GetAudioManager() = 0; + virtual WebKitContext* GetWebKitContext() = 0; }; } // namespace content |