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

Unified Diff: ui/app_list/search/history.cc

Issue 1539583003: Convert Pass()→std::move() in ui/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « ui/app_list/search/dictionary_data_store.cc ('k') | ui/app_list/search/history_data.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/app_list/search/history.cc
diff --git a/ui/app_list/search/history.cc b/ui/app_list/search/history.cc
index 7d38bb269a07761bdc3c481ec5b29990ec816b60..b4c95e300f58aad9795929d3a0663446184fd411 100644
--- a/ui/app_list/search/history.cc
+++ b/ui/app_list/search/history.cc
@@ -50,7 +50,7 @@ void History::AddLaunchEvent(const std::string& query,
scoped_ptr<KnownResults> History::GetKnownResults(
const std::string& query) const {
DCHECK(IsReady());
- return data_->GetKnownResults(NormalizeString(query)).Pass();
+ return data_->GetKnownResults(NormalizeString(query));
}
void History::OnHistoryDataLoadedFromStore() {
« no previous file with comments | « ui/app_list/search/dictionary_data_store.cc ('k') | ui/app_list/search/history_data.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698