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

Unified Diff: webkit/api/public/WebWorkerClient.h

Issue 173193: Updating Worker.postMessage(), DOMWindow.postMessage(), and... (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 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 | « webkit/api/public/WebWorker.h ('k') | webkit/api/src/PlatformMessagePortChannel.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/api/public/WebWorkerClient.h
===================================================================
--- webkit/api/public/WebWorkerClient.h (revision 23787)
+++ webkit/api/public/WebWorkerClient.h (working copy)
@@ -31,10 +31,9 @@
#ifndef WebWorkerClient_h
#define WebWorkerClient_h
-#include "WebCommon.h"
+#include "WebMessagePortChannel.h"
namespace WebKit {
- class WebMessagePortChannel;
class WebString;
class WebWorker;
@@ -43,8 +42,9 @@
// the Worker object, unless noted.
class WebWorkerClient {
public:
- virtual void postMessageToWorkerObject(const WebString&,
- WebMessagePortChannel*) = 0;
+ virtual void postMessageToWorkerObject(
+ const WebString&,
+ const WebMessagePortChannelArray&) = 0;
virtual void postExceptionToWorkerObject(
const WebString& errorString, int lineNumber,
« no previous file with comments | « webkit/api/public/WebWorker.h ('k') | webkit/api/src/PlatformMessagePortChannel.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698