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

Unified Diff: android_webview/browser/aw_message_port_service.h

Issue 2375133002: Move MessagePort implementation from android_webview to content (Closed)
Patch Set: rsesek nits and git cl format Created 4 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
Index: android_webview/browser/aw_message_port_service.h
diff --git a/android_webview/browser/aw_message_port_service.h b/android_webview/browser/aw_message_port_service.h
deleted file mode 100644
index 779d90caabe93efc2135eaedf9cda1b13ae63aab..0000000000000000000000000000000000000000
--- a/android_webview/browser/aw_message_port_service.h
+++ /dev/null
@@ -1,34 +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_BROWSER_AW_MESSAGE_PORT_SERVICE_H_
-#define ANDROID_WEBVIEW_BROWSER_AW_MESSAGE_PORT_SERVICE_H_
-
-#include <vector>
-
-#include "base/values.h"
-
-namespace android_webview {
-
-class AwMessagePortMessageFilter;
-
-// The interface for AwMessagePortService
-class AwMessagePortService {
- public:
- virtual ~AwMessagePortService() { }
-
- virtual void OnConvertedWebToAppMessage(
- int message_port_id,
- const base::ListValue& message,
- const std::vector<int>& sent_message_port_ids) = 0;
-
- virtual void OnMessagePortMessageFilterClosing(
- AwMessagePortMessageFilter* filter) = 0;
-
- virtual void CleanupPort(int message_port_id) = 0;
-};
-
-} // namespace android_webview
-
-#endif // ANDROID_WEBVIEW_BROWSER_AW_MESSAGE_PORT_SERVICE_H_
« no previous file with comments | « android_webview/browser/aw_message_port_message_filter.cc ('k') | android_webview/browser/jni_dependency_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698