| Index: chrome/browser/android/most_visited_sites.h
|
| diff --git a/chrome/browser/android/most_visited_sites.h b/chrome/browser/android/most_visited_sites.h
|
| index 33fdca54eeb2d1351652a93f709cf571f9a64efe..76a17d258e439fb31f00d8e5f6dfc4182d3eab43 100644
|
| --- a/chrome/browser/android/most_visited_sites.h
|
| +++ b/chrome/browser/android/most_visited_sites.h
|
| @@ -13,6 +13,7 @@
|
|
|
| #include "base/android/scoped_java_ref.h"
|
| #include "base/compiler_specific.h"
|
| +#include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/memory/weak_ptr.h"
|
| @@ -89,19 +90,14 @@ class MostVisitedSites : public sync_driver::SyncServiceObserver,
|
| base::string16 title;
|
| GURL url;
|
| MostVisitedSource source;
|
| +
|
| + // Only valid for source == WHITELIST (empty otherwise).
|
| + base::FilePath whitelist_icon_path;
|
| +
|
| // Only valid for source == SUGGESTIONS_SERVICE (-1 otherwise).
|
| int provider_index;
|
|
|
| - Suggestion(const base::string16& title,
|
| - const std::string& url,
|
| - MostVisitedSource source);
|
| - Suggestion(const base::string16& title,
|
| - const GURL& url,
|
| - MostVisitedSource source);
|
| - Suggestion(const base::string16& title,
|
| - const std::string& url,
|
| - MostVisitedSource source,
|
| - int provider_index);
|
| + Suggestion();
|
| ~Suggestion();
|
|
|
| // Get the Histogram name associated with the source.
|
|
|