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

Unified Diff: android_webview/renderer/aw_message_port_client.h

Issue 2375133002: Move MessagePort implementation from android_webview to content (Closed)
Patch Set: Created 4 years, 3 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: android_webview/renderer/aw_message_port_client.h
diff --git a/android_webview/renderer/aw_message_port_client.h b/android_webview/renderer/aw_message_port_client.h
deleted file mode 100644
index c18f41203b0f35924eda848f256f89de93500a81..0000000000000000000000000000000000000000
--- a/android_webview/renderer/aw_message_port_client.h
+++ /dev/null
@@ -1,42 +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 ANDROID_WEBVIEW_RENDERER_AW_MESSAGE_PORT_CLIENT_H_
-#define ANDROID_WEBVIEW_RENDERER_AW_MESSAGE_PORT_CLIENT_H_
-
-#include <vector>
-
-#include "base/macros.h"
-#include "base/strings/string16.h"
-#include "content/public/renderer/render_frame_observer.h"
-
-namespace android_webview {
-
-// Renderer side of Android webview specific message port service. This service
-// is used to convert messages from WebSerializedScriptValue to a base value.
-class AwMessagePortClient : public content::RenderFrameObserver {
- public:
- explicit AwMessagePortClient(content::RenderFrame* render_frame);
-
- private:
- ~AwMessagePortClient() 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(AwMessagePortClient);
-};
-
-}
-
-#endif // ANDROID_WEBVIEW_RENDERER_AW_MESSAGE_PORT_CLIENT_H_

Powered by Google App Engine
This is Rietveld 408576698