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

Unified Diff: webkit/child/webthread_impl.cc

Issue 61553006: Rename WebKit namespace to blink (part 5) (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 | « webkit/child/webthread_impl.h ('k') | webkit/child/weburlloader_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/child/webthread_impl.cc
diff --git a/webkit/child/webthread_impl.cc b/webkit/child/webthread_impl.cc
index 93e6311d659074c33d43c08b227127d4509b91e7..4646662699074915c3c0a977ccff33b5142aebd4 100644
--- a/webkit/child/webthread_impl.cc
+++ b/webkit/child/webthread_impl.cc
@@ -62,14 +62,14 @@ WebThreadImpl::WebThreadImpl(const char* name)
void WebThreadImpl::postTask(Task* task) {
thread_->message_loop()->PostTask(
- FROM_HERE, base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)));
+ FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
}
void WebThreadImpl::postDelayedTask(
Task* task, long long delay_ms) {
thread_->message_loop()->PostDelayedTask(
FROM_HERE,
- base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)),
+ base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
base::TimeDelta::FromMilliseconds(delay_ms));
}
@@ -100,14 +100,14 @@ WebThreadImplForMessageLoop::WebThreadImplForMessageLoop(
void WebThreadImplForMessageLoop::postTask(Task* task) {
message_loop_->PostTask(
- FROM_HERE, base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)));
+ FROM_HERE, base::Bind(&blink::WebThread::Task::run, base::Owned(task)));
}
void WebThreadImplForMessageLoop::postDelayedTask(
Task* task, long long delay_ms) {
message_loop_->PostDelayedTask(
FROM_HERE,
- base::Bind(&WebKit::WebThread::Task::run, base::Owned(task)),
+ base::Bind(&blink::WebThread::Task::run, base::Owned(task)),
base::TimeDelta::FromMilliseconds(delay_ms));
}
« no previous file with comments | « webkit/child/webthread_impl.h ('k') | webkit/child/weburlloader_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698