Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(139)

Unified Diff: content/worker/worker_thread.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/worker/websharedworkerclient_proxy.cc ('k') | content/worker/worker_webapplicationcachehost_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/worker_thread.cc
diff --git a/content/worker/worker_thread.cc b/content/worker/worker_thread.cc
index de67978197e7ff50296a3e89c3de922d0288b0cf..53b483aa75a3dd797ee6f43c3d640d2603183bca 100644
--- a/content/worker/worker_thread.cc
+++ b/content/worker/worker_thread.cc
@@ -25,7 +25,7 @@
#include "third_party/WebKit/public/web/WebRuntimeFeatures.h"
#include "webkit/glue/webkit_glue.h"
-using WebKit::WebRuntimeFeatures;
+using blink::WebRuntimeFeatures;
namespace content {
@@ -38,14 +38,14 @@ WorkerThread::WorkerThread() {
thread_safe_sender(),
sync_message_filter(),
quota_message_filter()));
- WebKit::initialize(webkit_platform_support_.get());
+ blink::initialize(webkit_platform_support_.get());
appcache_dispatcher_.reset(
new AppCacheDispatcher(this, new AppCacheFrontendImpl()));
web_database_observer_impl_.reset(
new WebDatabaseObserverImpl(sync_message_filter()));
- WebKit::WebDatabase::setObserver(web_database_observer_impl_.get());
+ blink::WebDatabase::setObserver(web_database_observer_impl_.get());
db_message_filter_ = new DBMessageFilter();
channel()->AddFilter(db_message_filter_.get());
@@ -77,7 +77,7 @@ void WorkerThread::Shutdown() {
channel()->RemoveFilter(db_message_filter_.get());
db_message_filter_ = NULL;
- WebKit::shutdown();
+ blink::shutdown();
lazy_tls.Pointer()->Set(NULL);
}
« no previous file with comments | « content/worker/websharedworkerclient_proxy.cc ('k') | content/worker/worker_webapplicationcachehost_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698