diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 20:46:06 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 20:46:06 +0000 |
commit | 3bf335afc98d4f9e85bb5a3f72974d53cb77ebeb (patch) | |
tree | 876769a0f2b23932c691d25edde4c0074ef87bbe /chrome/test/testing_profile.h | |
parent | 4411c21f13e7da66f3c9d394f40c1f10b6d20782 (diff) | |
download | chromium_src-3bf335afc98d4f9e85bb5a3f72974d53cb77ebeb.zip chromium_src-3bf335afc98d4f9e85bb5a3f72974d53cb77ebeb.tar.gz chromium_src-3bf335afc98d4f9e85bb5a3f72974d53cb77ebeb.tar.bz2 |
Create a webkit thread for use within the browser process. This patch also includes some (soon to be fleshed out in another CL) code to demonstrate how it'll be used in DOM Storage.
BUG=None
TEST=None
Review URL: http://codereview.chromium.org/139003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19413 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.h')
-rw-r--r-- | chrome/test/testing_profile.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/test/testing_profile.h b/chrome/test/testing_profile.h index b7daf41..d791fdd 100644 --- a/chrome/test/testing_profile.h +++ b/chrome/test/testing_profile.h @@ -204,6 +204,12 @@ class TestingProfile : public Profile { virtual SpellChecker* GetSpellChecker() { return NULL; } + virtual WebKitContext* GetWebKitContext() { + return NULL; + } + virtual WebKitContext* GetOffTheRecordWebKitContext() { + return NULL; + } virtual void MarkAsCleanShutdown() { } virtual void InitExtensions() { |