| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |