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

Unified Diff: chrome/browser/chromeos/launcher_search_provider/service.h

Issue 1140873002: Change queryId of launcherSearchProvider API to integer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove old TODO. Created 5 years, 7 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/launcher_search_provider/service.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/launcher_search_provider/service.h
diff --git a/chrome/browser/chromeos/launcher_search_provider/service.h b/chrome/browser/chromeos/launcher_search_provider/service.h
index a27165cfaf228b2044d85325856aa5c4aa6ff14e..17ebf97ce8d989bf33403f8666cbdf10e10f3779 100644
--- a/chrome/browser/chromeos/launcher_search_provider/service.h
+++ b/chrome/browser/chromeos/launcher_search_provider/service.h
@@ -53,7 +53,7 @@ class Service : public KeyedService {
void SetSearchResults(
const extensions::Extension* extension,
scoped_ptr<ErrorReporter> error_reporter,
- const std::string& query_id,
+ const int query_id,
const std::vector<linked_ptr<
extensions::api::launcher_search_provider::SearchResult>>& results);
@@ -67,7 +67,7 @@ class Service : public KeyedService {
Profile* const profile_;
extensions::ExtensionRegistry* extension_registry_;
app_list::LauncherSearchProvider* provider_;
- uint32 query_id_;
+ int query_id_;
bool is_query_running_;
DISALLOW_COPY_AND_ASSIGN(Service);
« no previous file with comments | « no previous file | chrome/browser/chromeos/launcher_search_provider/service.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698