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

Unified Diff: content/browser/android/app_web_message_port_message_filter.h

Issue 2422793002: HTML MessagePort as mojo::MessagePipeHandle (Closed)
Patch Set: Add missing ScopedAsyncTaskScheduler instance for the new unit tests; required by a recent change t… Created 3 years, 10 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/android/app_web_message_port_message_filter.h
diff --git a/content/browser/android/app_web_message_port_message_filter.h b/content/browser/android/app_web_message_port_message_filter.h
deleted file mode 100644
index b9658eb7e239b7e1158501894fabc5ca9b01e304..0000000000000000000000000000000000000000
--- a/content/browser/android/app_web_message_port_message_filter.h
+++ /dev/null
@@ -1,57 +0,0 @@
-// Copyright 2015 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_ANDROID_APP_WEB_MESSAGE_PORT_MESSAGE_FILTER_H_
-#define CONTENT_BROWSER_ANDROID_APP_WEB_MESSAGE_PORT_MESSAGE_FILTER_H_
-
-#include "base/callback.h"
-#include "base/macros.h"
-#include "content/public/browser/browser_message_filter.h"
-#include "content/public/browser/message_port_delegate.h"
-
-namespace content {
-
-// Filter for Aw specific MessagePort related IPC messages (creating and
-// destroying a MessagePort, sending a message via a MessagePort etc).
-class AppWebMessagePortMessageFilter : public content::BrowserMessageFilter,
- public content::MessagePortDelegate {
- public:
- explicit AppWebMessagePortMessageFilter(int route_id);
-
- // BrowserMessageFilter implementation.
- void OnChannelClosing() override;
- bool OnMessageReceived(const IPC::Message& message) override;
- void OnDestruct() const override;
-
- void SendAppToWebMessage(int msg_port_route_id,
- const base::string16& message,
- const std::vector<int>& sent_message_port_ids);
- void SendClosePortMessage(int message_port_id);
-
- // MessagePortDelegate implementation.
- void SendMessage(int msg_port_route_id,
- const base::string16& message,
- const std::vector<int>& sent_message_ports) override;
- void SendMessagesAreQueued(int route_id) override;
-
- private:
- friend class content::BrowserThread;
- friend class base::DeleteHelper<AppWebMessagePortMessageFilter>;
-
- void OnConvertedAppToWebMessage(
- int msg_port_id,
- const base::string16& message,
- const std::vector<int>& sent_message_port_ids);
- void OnClosePortAck(int message_port_id);
-
- int route_id_;
-
- ~AppWebMessagePortMessageFilter() override;
-
- DISALLOW_COPY_AND_ASSIGN(AppWebMessagePortMessageFilter);
-};
-
-} // namespace content
-
-#endif // CONTENT_BROWSER_ANDROID_APP_WEB_MESSAGE_PORT_MESSAGE_FILTER_H_
« no previous file with comments | « content/browser/android/app_web_message_port.cc ('k') | content/browser/android/app_web_message_port_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698