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

Unified Diff: content/public/android/java/src/org/chromium/content_public/browser/MessagePortService.java

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/public/android/java/src/org/chromium/content_public/browser/MessagePortService.java
diff --git a/content/public/android/java/src/org/chromium/content_public/browser/MessagePortService.java b/content/public/android/java/src/org/chromium/content_public/browser/MessagePortService.java
deleted file mode 100644
index 8982b2158e60ca0bcf6fbe1764d048651e682c88..0000000000000000000000000000000000000000
--- a/content/public/android/java/src/org/chromium/content_public/browser/MessagePortService.java
+++ /dev/null
@@ -1,17 +0,0 @@
-// Copyright 2016 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.
-
-package org.chromium.content_public.browser;
-
-/**
- * An interface for creating and managing channels with {@link MessagePort}s on both ends.
- */
-public interface MessagePortService {
- /**
- * @return Two {@link MessagePort}s that forms the ends of a message channel created. The user
- * of the API should send one of these to the main frame of the tab that should be
- * receiving the messages and hold onto the other one.
- */
- MessagePort[] createMessageChannel();
-}

Powered by Google App Engine
This is Rietveld 408576698