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

Unified Diff: Source/core/testing/InspectorFrontendClientLocal.cpp

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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 | « Source/core/svg/SVGPathStringSource.cpp ('k') | Source/core/testing/InternalProfilers.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/testing/InspectorFrontendClientLocal.cpp
diff --git a/Source/core/testing/InspectorFrontendClientLocal.cpp b/Source/core/testing/InspectorFrontendClientLocal.cpp
index 52952d811aef35c3837ebf74d28642d81e25318f..1adc4ab7f432ced50695710014aaa43db0534169 100644
--- a/Source/core/testing/InspectorFrontendClientLocal.cpp
+++ b/Source/core/testing/InspectorFrontendClientLocal.cpp
@@ -69,7 +69,7 @@ public:
private:
void schedule()
{
- class TaskImpl : public WebKit::WebThread::Task {
+ class TaskImpl : public blink::WebThread::Task {
public:
RefPtr<InspectorBackendMessageQueue> owner;
virtual void run()
@@ -79,7 +79,7 @@ private:
};
TaskImpl* taskImpl = new TaskImpl;
taskImpl->owner = this;
- WebKit::Platform::current()->currentThread()->postTask(taskImpl);
+ blink::Platform::current()->currentThread()->postTask(taskImpl);
}
void deliver()
« no previous file with comments | « Source/core/svg/SVGPathStringSource.cpp ('k') | Source/core/testing/InternalProfilers.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698