Index: components/contextual_search/contextual_search_api_service.mojom |
diff --git a/components/contextual_search/contextual_search_api_service.mojom b/components/contextual_search/contextual_search_api_service.mojom |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a3dcb1ef5e01439855892a47299016ce63012a91 |
--- /dev/null |
+++ b/components/contextual_search/contextual_search_api_service.mojom |
@@ -0,0 +1,13 @@ |
+// 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. |
+ |
+module contextual_search; |
+ |
+// This service is implemented by the browser process and is used by the |
+// renderer when a Contextual Search JavaScript API function is called. |
+interface ContextualSearchApiService { |
+ |
+ // Handle the "setCaption" function. |
+ HandleSetCaption(string message); |
+}; |