Index: chrome/browser/ui/app_list/search/mixer.h |
diff --git a/chrome/browser/ui/app_list/search/mixer.h b/chrome/browser/ui/app_list/search/mixer.h |
index c555145fc79f2a5ac2c45f7b88ea86a4b8ee7ebb..1e2f2fa7b05d96eac4f2adf428c91938f4a9bb1c 100644 |
--- a/chrome/browser/ui/app_list/search/mixer.h |
+++ b/chrome/browser/ui/app_list/search/mixer.h |
@@ -17,8 +17,8 @@ namespace test { |
FORWARD_DECLARE_TEST(MixerTest, Publish); |
} |
-class ChromeSearchResult; |
class SearchProvider; |
+class SearchResult; |
// Mixer collects results from providers, sorts them and publishes them to the |
// SearchResults UI model. The targeted results have 6 slots to hold the |
@@ -55,11 +55,11 @@ class Mixer { |
// Used for sorting and mixing results. |
struct SortData { |
SortData(); |
- SortData(ChromeSearchResult* result, double score); |
+ SortData(SearchResult* result, double score); |
bool operator<(const SortData& other) const; |
- ChromeSearchResult* result; // Not owned. |
+ SearchResult* result; // Not owned. |
double score; |
}; |
typedef std::vector<Mixer::SortData> SortedResults; |