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

Unified Diff: Source/core/dom/MessageChannel.cpp

Issue 460393003: Cleanup namespace usage in Source/core/{dom/* & fileapi/*} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix Error and Rebase Created 6 years, 4 months 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/dom/ExecutionContextClient.h ('k') | Source/core/dom/MessagePort.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/MessageChannel.cpp
diff --git a/Source/core/dom/MessageChannel.cpp b/Source/core/dom/MessageChannel.cpp
index 4e74498074390235a2dd8e4b4ef40d21cc4ba32b..eb82673d3a0ae517e895122fb49b4a0ae02120d4 100644
--- a/Source/core/dom/MessageChannel.cpp
+++ b/Source/core/dom/MessageChannel.cpp
@@ -37,9 +37,9 @@ DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(MessageChannel);
static void createChannel(MessagePort* port1, MessagePort* port2)
{
- blink::WebMessagePortChannel* channel1;
- blink::WebMessagePortChannel* channel2;
- blink::Platform::current()->createMessageChannel(&channel1, &channel2);
+ WebMessagePortChannel* channel1;
+ WebMessagePortChannel* channel2;
+ Platform::current()->createMessageChannel(&channel1, &channel2);
ASSERT(channel1 && channel2);
// Now entangle the proxies with the appropriate local ports.
« no previous file with comments | « Source/core/dom/ExecutionContextClient.h ('k') | Source/core/dom/MessagePort.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698