summaryrefslogtreecommitdiffstats
path: root/mojo/public/interfaces/interface_provider
diff options
context:
space:
mode:
authorsammc@chromium.org <sammc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-30 06:48:53 +0000
committersammc@chromium.org <sammc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-06-30 06:48:53 +0000
commit8c4e8670e876dfacb1ac095af71f670b6639495f (patch)
tree14eec812c5906543be30ea61ec72db69a2f161d6 /mojo/public/interfaces/interface_provider
parent45af144330bd2f1345c2433f4f17c95bdcebe2d1 (diff)
downloadchromium_src-8c4e8670e876dfacb1ac095af71f670b6639495f.zip
chromium_src-8c4e8670e876dfacb1ac095af71f670b6639495f.tar.gz
chromium_src-8c4e8670e876dfacb1ac095af71f670b6639495f.tar.bz2
Mojo: Remove InterfaceProvider.
Review URL: https://codereview.chromium.org/358743002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@280569 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'mojo/public/interfaces/interface_provider')
-rw-r--r--mojo/public/interfaces/interface_provider/BUILD.gn11
-rw-r--r--mojo/public/interfaces/interface_provider/interface_provider.mojom12
2 files changed, 0 insertions, 23 deletions
diff --git a/mojo/public/interfaces/interface_provider/BUILD.gn b/mojo/public/interfaces/interface_provider/BUILD.gn
deleted file mode 100644
index 55d5b0a..0000000
--- a/mojo/public/interfaces/interface_provider/BUILD.gn
+++ /dev/null
@@ -1,11 +0,0 @@
-# Copyright 2014 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.
-
-import("//mojo/public/tools/bindings/mojom.gni")
-
-mojom("interface_provider") {
- sources = [
- "interface_provider.mojom",
- ]
-}
diff --git a/mojo/public/interfaces/interface_provider/interface_provider.mojom b/mojo/public/interfaces/interface_provider/interface_provider.mojom
deleted file mode 100644
index 91e3281..0000000
--- a/mojo/public/interfaces/interface_provider/interface_provider.mojom
+++ /dev/null
@@ -1,12 +0,0 @@
-// Copyright 2014 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.
-
-module mojo {
-
-[Client=IInterfaceProvider]
-interface IInterfaceProvider {
- GetInterface(string name, handle<message_pipe> client_handle);
-};
-
-}