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(); |
-} |