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

Unified Diff: Source/core/dom/MessagePortChannel.h

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/css/FontFaceSet.cpp ('k') | Source/core/dom/MessagePortChannel.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/MessagePortChannel.h
diff --git a/Source/core/dom/MessagePortChannel.h b/Source/core/dom/MessagePortChannel.h
index 799a6b696ae75324ad52e64cc53de736e298fb4c..c4f21b758c3ec82fada39ab83fcf0ab61d625146 100644
--- a/Source/core/dom/MessagePortChannel.h
+++ b/Source/core/dom/MessagePortChannel.h
@@ -39,7 +39,7 @@
#include "wtf/ThreadSafeRefCounted.h"
#include "wtf/ThreadingPrimitives.h"
-namespace WebKit {
+namespace blink {
class WebMessagePortChannel;
}
@@ -54,11 +54,11 @@ class SerializedScriptValue;
typedef Vector<OwnPtr<MessagePortChannel>, 1> MessagePortChannelArray;
// MessagePortChannel is a platform-independent interface to the remote side of a message channel.
-class MessagePortChannel : public WebKit::WebMessagePortChannelClient {
+class MessagePortChannel : public blink::WebMessagePortChannelClient {
WTF_MAKE_NONCOPYABLE(MessagePortChannel);
public:
static void createChannel(MessagePort*, MessagePort*);
- static PassOwnPtr<MessagePortChannel> create(WebKit::WebMessagePortChannel*);
+ static PassOwnPtr<MessagePortChannel> create(blink::WebMessagePortChannel*);
virtual ~MessagePortChannel();
@@ -81,12 +81,12 @@ public:
bool tryGetMessageFromRemote(RefPtr<SerializedScriptValue>&, OwnPtr<MessagePortChannelArray>&);
// Releases ownership of the contained web channel.
- WebKit::WebMessagePortChannel* webChannelRelease();
+ blink::WebMessagePortChannel* webChannelRelease();
private:
- explicit MessagePortChannel(WebKit::WebMessagePortChannel*);
+ explicit MessagePortChannel(blink::WebMessagePortChannel*);
- // WebKit::WebMessagePortChannelClient implementation
+ // blink::WebMessagePortChannelClient implementation
virtual void messageAvailable() OVERRIDE;
// Mutex used to ensure exclusive access to the object internals.
@@ -95,7 +95,7 @@ private:
// The port we are connected to - this is the port that is notified when new messages arrive.
MessagePort* m_localPort;
- WebKit::WebMessagePortChannel* m_webChannel;
+ blink::WebMessagePortChannel* m_webChannel;
};
} // namespace WebCore
« no previous file with comments | « Source/core/css/FontFaceSet.cpp ('k') | Source/core/dom/MessagePortChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698