Chromium Code Reviews| Index: chrome/browser/ui/app_list/search/webstore/webstore_result.h |
| diff --git a/chrome/browser/ui/app_list/search/webstore/webstore_result.h b/chrome/browser/ui/app_list/search/webstore/webstore_result.h |
| index 25f32f5652523065568403bfdb5421b636f80027..2fcd2e4861cf579ed25ebf45bd5d5ed54f4b1257 100644 |
| --- a/chrome/browser/ui/app_list/search/webstore/webstore_result.h |
| +++ b/chrome/browser/ui/app_list/search/webstore/webstore_result.h |
| @@ -10,10 +10,10 @@ |
| #include "base/basictypes.h" |
| #include "base/memory/weak_ptr.h" |
| #include "chrome/browser/extensions/install_observer.h" |
| -#include "chrome/browser/ui/app_list/search/chrome_search_result.h" |
| #include "chrome/common/extensions/webstore_install_result.h" |
| #include "extensions/browser/extension_registry_observer.h" |
| #include "extensions/common/manifest.h" |
| +#include "ui/app_list/search_result.h" |
| #include "url/gurl.h" |
| class AppListControllerDelegate; |
| @@ -26,7 +26,7 @@ class InstallTracker; |
| namespace app_list { |
| -class WebstoreResult : public ChromeSearchResult, |
| +class WebstoreResult : public SearchResult, |
| public extensions::InstallObserver, |
| public extensions::ExtensionRegistryObserver { |
| public: |
| @@ -44,11 +44,11 @@ class WebstoreResult : public ChromeSearchResult, |
| extensions::Manifest::Type item_type() const { return item_type_; } |
| bool is_paid() const { return is_paid_; } |
| - // ChromeSearchResult overides: |
| + // SearchResult overides: |
|
tapted
2014/10/02 07:19:21
nit: you know the drill :)
Jun Mukai
2014/10/03 01:24:23
Done.
|
| virtual void Open(int event_flags) OVERRIDE; |
| virtual void InvokeAction(int action_index, int event_flags) OVERRIDE; |
| - virtual scoped_ptr<ChromeSearchResult> Duplicate() OVERRIDE; |
| - virtual ChromeSearchResultType GetType() OVERRIDE; |
| + virtual scoped_ptr<SearchResult> Duplicate() OVERRIDE; |
| + virtual SearchResultType GetType() OVERRIDE; |
| private: |
| // Set the initial state and start observing both InstallObserver and |