diff options
author | ericu@chromium.org <ericu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 19:37:29 +0000 |
---|---|---|
committer | ericu@chromium.org <ericu@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-15 19:37:29 +0000 |
commit | 018c9908c69c8e5ab04a0f7878da276b27f6fc2d (patch) | |
tree | 7139d9f8da8bbd531e2fd9339b2088b065d05a67 | |
parent | f6c9d56c4b81eb282e591cc079622697ed99b5ed (diff) | |
download | chromium_src-018c9908c69c8e5ab04a0f7878da276b27f6fc2d.zip chromium_src-018c9908c69c8e5ab04a0f7878da276b27f6fc2d.tar.gz chromium_src-018c9908c69c8e5ab04a0f7878da276b27f6fc2d.tar.bz2 |
See https://code.google.com/p/chromium/issues/detail?id=170089
Revert 176846
> Explicitly initialize the IDB Factory after resetting webkit_platform_support, because upstream WebKit will soon require all embedders to do this.
>
> Review URL: https://chromiumcodereview.appspot.com/11878023
TBR=pilgrim@chromium.org
Review URL: https://codereview.chromium.org/11916007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@176954 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | webkit/support/webkit_support.cc | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/webkit/support/webkit_support.cc b/webkit/support/webkit_support.cc index 5ddfc0f..b2a3d55 100644 --- a/webkit/support/webkit_support.cc +++ b/webkit/support/webkit_support.cc @@ -38,7 +38,6 @@ #include "third_party/WebKit/Source/WebKit/chromium/public/platform/WebURLError.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebCache.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebFileSystemCallbacks.h" -#include "third_party/WebKit/Source/WebKit/chromium/public/WebIDBFactory.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebKit.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebPluginParams.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebStorageNamespace.h" @@ -171,8 +170,6 @@ class TestEnvironment { webkit_platform_support_.reset( new TestWebKitPlatformSupport(unit_test_mode, shadow_platform_delegate)); - WebKit::setIDBFactory( - webkit_platform_support_.get()->idbFactory()); #if defined(OS_ANDROID) // Make sure we have enough decoding resources for layout tests. |