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

Unified Diff: content/renderer/android/app_web_message_port_client.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
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/android/app_web_message_port_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/android/app_web_message_port_client.h
diff --git a/content/renderer/android/app_web_message_port_client.h b/content/renderer/android/app_web_message_port_client.h
deleted file mode 100644
index e2c3f8d196bd6a91ba209be531394c4c617366df..0000000000000000000000000000000000000000
--- a/content/renderer/android/app_web_message_port_client.h
+++ /dev/null
@@ -1,41 +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_RENDERER_ANDROID_APP_WEB_MESSAGE_PORT_CLIENT_H_
-#define CONTENT_RENDERER_ANDROID_APP_WEB_MESSAGE_PORT_CLIENT_H_
-
-#include <vector>
-
-#include "base/macros.h"
-#include "base/strings/string16.h"
-#include "content/public/renderer/render_frame_observer.h"
-
-namespace content {
-
-// Renderer side of Android webview specific message port service. This service
-// is used to convert messages from WebSerializedScriptValue to a base value.
-class AppWebMessagePortClient : public content::RenderFrameObserver {
- public:
- explicit AppWebMessagePortClient(content::RenderFrame* render_frame);
-
- private:
- ~AppWebMessagePortClient() override;
-
- // RenderFrameObserver
- bool OnMessageReceived(const IPC::Message& message) override;
- void OnDestruct() override;
-
- void OnWebToAppMessage(int message_port_id,
- const base::string16& message,
- const std::vector<int>& sent_message_port_ids);
- void OnAppToWebMessage(int message_port_id,
- const base::string16& message,
- const std::vector<int>& sent_message_port_ids);
- void OnClosePort(int message_port_id);
-
- DISALLOW_COPY_AND_ASSIGN(AppWebMessagePortClient);
-};
-}
-
-#endif // CONTENT_RENDERER_ANDROID_APP_WEB_MESSAGE_PORT_CLIENT_H_
« no previous file with comments | « content/renderer/BUILD.gn ('k') | content/renderer/android/app_web_message_port_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698