Index: Source/web/WebKit.cpp |
diff --git a/Source/web/WebKit.cpp b/Source/web/WebKit.cpp |
index cf26677ee331fef718e80f387d0d3db53b816430..b7de228471f0d32d9eaa2c1e03ba8b12b6efa640 100644 |
--- a/Source/web/WebKit.cpp |
+++ b/Source/web/WebKit.cpp |
@@ -59,7 +59,7 @@ |
#include <v8-defaults.h> |
#include <v8.h> |
-namespace WebKit { |
+namespace blink { |
namespace { |
@@ -167,9 +167,9 @@ void initializeWithoutV8(Platform* platform) |
// this, initializing this lazily probably doesn't buy us much. |
WTF::UTF8Encoding(); |
- WebCore::setIDBFactoryBackendInterfaceCreateFunction(WebKit::IDBFactoryBackendProxy::create); |
+ WebCore::setIDBFactoryBackendInterfaceCreateFunction(blink::IDBFactoryBackendProxy::create); |
- WebCore::MediaPlayer::setMediaEngineCreateFunction(WebKit::WebMediaPlayerClientImpl::create); |
+ WebCore::MediaPlayer::setMediaEngineCreateFunction(blink::WebMediaPlayerClientImpl::create); |
WebCore::WorkerGlobalScopeProxy::setCreateDelegate(WebWorkerClientImpl::createWorkerGlobalScopeProxy); |
} |
@@ -229,4 +229,4 @@ void resetPluginCache(bool reloadPages) |
WebCore::Page::refreshPlugins(reloadPages); |
} |
-} // namespace WebKit |
+} // namespace blink |