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

Side by Side Diff: chrome/browser/ui/app_list/search/webstore_result.cc

Issue 17038002: Separate the NTP app ordering from the app list app ordering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rework + fix tests Created 7 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "chrome/browser/ui/app_list/search/webstore_result.h" 5 #include "chrome/browser/ui/app_list/search/webstore_result.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/memory/ref_counted.h" 10 #include "base/memory/ref_counted.h"
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
188 188
189 void WebstoreResult::OnExtensionLoaded( 189 void WebstoreResult::OnExtensionLoaded(
190 const extensions::Extension* extension) {} 190 const extensions::Extension* extension) {}
191 191
192 void WebstoreResult::OnExtensionUnloaded( 192 void WebstoreResult::OnExtensionUnloaded(
193 const extensions::Extension* extension) {} 193 const extensions::Extension* extension) {}
194 194
195 void WebstoreResult::OnExtensionUninstalled( 195 void WebstoreResult::OnExtensionUninstalled(
196 const extensions::Extension* extension) {} 196 const extensions::Extension* extension) {}
197 197
198 void WebstoreResult::OnAppsReordered() {} 198 void WebstoreResult::OnAppListReordered() {}
199 199
200 void WebstoreResult::OnAppInstalledToAppList(const std::string& extension_id) {} 200 void WebstoreResult::OnAppInstalledToAppList(const std::string& extension_id) {}
201 201
202 void WebstoreResult::OnShutdown() { 202 void WebstoreResult::OnShutdown() {
203 StopObservingInstall(); 203 StopObservingInstall();
204 } 204 }
205 205
206 ChromeSearchResultType WebstoreResult::GetType() { 206 ChromeSearchResultType WebstoreResult::GetType() {
207 return SEARCH_WEBSTORE_SEARCH_RESULT; 207 return SEARCH_WEBSTORE_SEARCH_RESULT;
208 } 208 }
209 209
210 } // namespace app_list 210 } // namespace app_list
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698