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

Unified Diff: content/child/webmessageportchannel_impl.h

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/child/webkitplatformsupport_impl.cc ('k') | content/child/webmessageportchannel_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/webmessageportchannel_impl.h
diff --git a/content/child/webmessageportchannel_impl.h b/content/child/webmessageportchannel_impl.h
index 84d3f0e067d3ef1578ee055f3881f648b5c1d821..8390972349e301f94d1407efb7445d8a69578b4f 100644
--- a/content/child/webmessageportchannel_impl.h
+++ b/content/child/webmessageportchannel_impl.h
@@ -24,7 +24,7 @@ class ChildThread;
// This is thread safe.
class WebMessagePortChannelImpl
- : public WebKit::WebMessagePortChannel,
+ : public blink::WebMessagePortChannel,
public IPC::Listener,
public base::RefCountedThreadSafe<WebMessagePortChannelImpl> {
public:
@@ -43,13 +43,13 @@ class WebMessagePortChannelImpl
virtual ~WebMessagePortChannelImpl();
// WebMessagePortChannel implementation.
- virtual void setClient(WebKit::WebMessagePortChannelClient* client);
+ virtual void setClient(blink::WebMessagePortChannelClient* client);
virtual void destroy();
- virtual void entangle(WebKit::WebMessagePortChannel* channel);
- virtual void postMessage(const WebKit::WebString& message,
- WebKit::WebMessagePortChannelArray* channels);
- virtual bool tryGetMessage(WebKit::WebString* message,
- WebKit::WebMessagePortChannelArray& channels);
+ virtual void entangle(blink::WebMessagePortChannel* channel);
+ virtual void postMessage(const blink::WebString& message,
+ blink::WebMessagePortChannelArray* channels);
+ virtual bool tryGetMessage(blink::WebString* message,
+ blink::WebMessagePortChannelArray& channels);
void Init();
void Entangle(scoped_refptr<WebMessagePortChannelImpl> channel);
@@ -74,7 +74,7 @@ class WebMessagePortChannelImpl
typedef std::queue<Message> MessageQueue;
MessageQueue message_queue_;
- WebKit::WebMessagePortChannelClient* client_;
+ blink::WebMessagePortChannelClient* client_;
base::Lock lock_; // Locks access to above.
int route_id_; // The routing id for this object.
« no previous file with comments | « content/child/webkitplatformsupport_impl.cc ('k') | content/child/webmessageportchannel_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698