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

Unified Diff: components/contextual_search/browser/contextual_search_ui_handle.h

Issue 1385663002: [Contextual Search] Add Mojo-enabled API component. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Separate component code into browser/common/renderer, and address Jochen's comments. Created 5 years, 1 month 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: components/contextual_search/browser/contextual_search_ui_handle.h
diff --git a/components/contextual_search/browser/contextual_search_ui_handle.h b/components/contextual_search/browser/contextual_search_ui_handle.h
new file mode 100644
index 0000000000000000000000000000000000000000..64b739532524622d1252926d88f0f989b15b90a8
--- /dev/null
+++ b/components/contextual_search/browser/contextual_search_ui_handle.h
@@ -0,0 +1,30 @@
+// 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 COMPONENTS_CONTEXTUAL_SEARCH_BROWSER_CONTEXTUAL_SEARCH_UI_HANDLE_H_
+#define COMPONENTS_CONTEXTUAL_SEARCH_BROWSER_CONTEXTUAL_SEARCH_UI_HANDLE_H_
+
+#include <string>
+
+#include "base/macros.h"
+
+namespace contextual_search {
+
+// Interface that the Contextual Search Renderer API uses to call back to
+// the browser.
+class ContextualSearchUIHandle {
+ public:
+ ContextualSearchUIHandle() {}
+ virtual ~ContextualSearchUIHandle() {}
+
+ // Set the caption in the Contextual Search Bar.
+ virtual void SetCaption(std::string caption) = 0;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ContextualSearchUIHandle);
+};
+
+} // namespace contextual_search
+
+#endif // COMPONENTS_CONTEXTUAL_SEARCH_BROWSER_CONTEXTUAL_SEARCH_UI_HANDLE_H_

Powered by Google App Engine
This is Rietveld 408576698