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

Unified Diff: chrome/browser/android/contextualsearch/resolved_search_term.h

Issue 2440843002: [Contextual Search] Pipe basic quick action data from C++ to Java (Closed)
Patch Set: [Contextual Search] Pipe basic quick action data from C++ to Java Created 4 years, 2 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: chrome/browser/android/contextualsearch/resolved_search_term.h
diff --git a/chrome/browser/android/contextualsearch/resolved_search_term.h b/chrome/browser/android/contextualsearch/resolved_search_term.h
index 3a4f6f603014824aaf906111f5333fbce3dd1d78..0264983e12c7474239b723404043007385013595 100644
--- a/chrome/browser/android/contextualsearch/resolved_search_term.h
+++ b/chrome/browser/android/contextualsearch/resolved_search_term.h
@@ -26,7 +26,9 @@ struct ResolvedSearchTerm {
int selection_end_adjust,
const std::string& context_language,
const std::string& thumbnail_url,
- const std::string& caption);
+ const std::string& caption,
+ const std::string& quick_action_uri,
+ const std::string& quick_action_category);
~ResolvedSearchTerm();
const bool is_invalid;
@@ -42,6 +44,8 @@ struct ResolvedSearchTerm {
const std::string context_language;
const std::string thumbnail_url;
const std::string caption;
+ const std::string quick_action_uri;
+ const std::string quick_action_category;
DISALLOW_COPY_AND_ASSIGN(ResolvedSearchTerm);
};

Powered by Google App Engine
This is Rietveld 408576698