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

Unified Diff: content/worker/websharedworkerclient_proxy.cc

Issue 33753003: Removed unhanled/unused Blink API implementation for SharedWorker (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | « content/worker/websharedworkerclient_proxy.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/worker/websharedworkerclient_proxy.cc
diff --git a/content/worker/websharedworkerclient_proxy.cc b/content/worker/websharedworkerclient_proxy.cc
index 97fc22421e5c1b7781009f8cc8e9f2172a9c6ea7..21182b00e3f3583d969770ff6caa5ec59bf010a3 100644
--- a/content/worker/websharedworkerclient_proxy.cc
+++ b/content/worker/websharedworkerclient_proxy.cc
@@ -47,50 +47,6 @@ WebSharedWorkerClientProxy::WebSharedWorkerClientProxy(
WebSharedWorkerClientProxy::~WebSharedWorkerClientProxy() {
}
-void WebSharedWorkerClientProxy::postMessageToWorkerObject(
- const WebString& message,
- const WebMessagePortChannelArray& channels) {
- // TODO(marja): Clean up the interface; this function doesn't need to exist.
- NOTREACHED();
-}
-
-void WebSharedWorkerClientProxy::postExceptionToWorkerObject(
- const WebString& error_message,
- int line_number,
- const WebString& source_url) {
- Send(new WorkerHostMsg_PostExceptionToWorkerObject(
- route_id_, error_message, line_number, source_url));
-}
-
-void WebSharedWorkerClientProxy::postConsoleMessageToWorkerObject(
- int source,
- int type,
- int level,
- const WebString& message,
- int line_number,
- const WebString& source_url) {
- WorkerHostMsg_PostConsoleMessageToWorkerObject_Params params;
- params.source_identifier = source;
- params.message_type = type;
- params.message_level = level;
- params.message = message;
- params.line_number = line_number;
- params.source_url = source_url;
- Send(new WorkerHostMsg_PostConsoleMessageToWorkerObject(route_id_, params));
-}
-
-void WebSharedWorkerClientProxy::confirmMessageFromWorkerObject(
- bool has_pending_activity) {
- Send(new WorkerHostMsg_ConfirmMessageFromWorkerObject(
- route_id_, has_pending_activity));
-}
-
-void WebSharedWorkerClientProxy::reportPendingActivity(
- bool has_pending_activity) {
- Send(new WorkerHostMsg_ReportPendingActivity(
- route_id_, has_pending_activity));
-}
-
void WebSharedWorkerClientProxy::workerContextClosed() {
Send(new WorkerHostMsg_WorkerContextClosed(route_id_));
}
« no previous file with comments | « content/worker/websharedworkerclient_proxy.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698