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

Unified Diff: content/browser/message_port_delegate.h

Issue 831523004: Enable posting a message from JS to Android webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component builds Created 5 years, 11 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
Index: content/browser/message_port_delegate.h
diff --git a/content/browser/message_port_delegate.h b/content/browser/message_port_delegate.h
deleted file mode 100644
index 8f6ad1b06973f46d0744654f4e34c066d578f822..0000000000000000000000000000000000000000
--- a/content/browser/message_port_delegate.h
+++ /dev/null
@@ -1,35 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CONTENT_BROWSER_MESSAGE_PORT_DELEGATE_H_
-#define CONTENT_BROWSER_MESSAGE_PORT_DELEGATE_H_
-
-#include <vector>
-
-#include "base/strings/string16.h"
-
-namespace content {
-
-// Delegate used by MessagePortService to send messages to message ports to the
-// correct renderer. Delegates are responsible for managing their own lifetime,
-// and should call MessagePortService::OnMessagePortDelegateClosing if they are
-// destroyed while there are still message ports associated with them.
-class MessagePortDelegate {
- public:
- // Sends a message to the given route. Implementations are responsible for
- // updating MessagePortService with new routes for the sent message ports.
- virtual void SendMessage(int route_id,
- const base::string16& message,
- const std::vector<int>& sent_message_port_ids) = 0;
-
- // Sends a "messages are queued" IPC to the given route.
- virtual void SendMessagesAreQueued(int route_id) = 0;
-
- protected:
- virtual ~MessagePortDelegate() {}
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_MESSAGE_PORT_DELEGATE_H_

Powered by Google App Engine
This is Rietveld 408576698