diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:50:46 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-07 06:50:46 +0000 |
commit | 180ef24f1fd1b1ff309fc35f250336890f702f28 (patch) | |
tree | de5918896ed9780e5cf6098be329060a58f3702e /content/test/webkit_support.cc | |
parent | 8d7dd7ade794c71be49c7a954c4d4b4ca1ab6c01 (diff) | |
download | chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.zip chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.gz chromium_src-180ef24f1fd1b1ff309fc35f250336890f702f28.tar.bz2 |
Rename WebKit namespace to blink (part 3)
This CL updates all references to the WebKit namespace in content.
TBR=darin@chromium.org
BUG=295096
Review URL: https://codereview.chromium.org/63253002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233513 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/test/webkit_support.cc')
-rw-r--r-- | content/test/webkit_support.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/content/test/webkit_support.cc b/content/test/webkit_support.cc index 01f80de..bb234353 100644 --- a/content/test/webkit_support.cc +++ b/content/test/webkit_support.cc @@ -57,9 +57,9 @@ TestEnvironment* test_environment; } // namespace void SetUpTestEnvironmentForUnitTests() { - WebKit::WebRuntimeFeatures::enableStableFeatures(true); - WebKit::WebRuntimeFeatures::enableExperimentalFeatures(true); - WebKit::WebRuntimeFeatures::enableTestOnlyFeatures(true); + blink::WebRuntimeFeatures::enableStableFeatures(true); + blink::WebRuntimeFeatures::enableExperimentalFeatures(true); + blink::WebRuntimeFeatures::enableTestOnlyFeatures(true); #if defined(OS_ANDROID) JNIEnv* env = base::android::AttachCurrentThread(); @@ -85,7 +85,7 @@ void TearDownTestEnvironment() { base::RunLoop().RunUntilIdle(); if (RunningOnValgrind()) - WebKit::WebCache::clear(); + blink::WebCache::clear(); delete test_environment; test_environment = NULL; } |