| Index: chrome/browser/search/search.h
|
| diff --git a/chrome/browser/search/search.h b/chrome/browser/search/search.h
|
| index ade3587eceff725263a1bbc3013ae4fd6bb4e02a..5f2eee5d0ef8a20056c06f7aab508c355607d039 100644
|
| --- a/chrome/browser/search/search.h
|
| +++ b/chrome/browser/search/search.h
|
| @@ -113,6 +113,9 @@ bool NavEntryIsInstantNTP(const content::WebContents* contents,
|
| // lead to an infinite recursion.
|
| GURL GetInstantURL(Profile* profile, int start_margin);
|
|
|
| +// Returns URLs associated with the default search engine for |profile|.
|
| +std::vector<GURL> GetSearchURLs(Profile* profile);
|
| +
|
| // Returns the Local Instant URL of the New Tab Page.
|
| // TODO(kmadhusu): Remove this function and update the call sites.
|
| GURL GetLocalInstantURL(Profile* profile);
|
| @@ -141,9 +144,6 @@ bool ShouldShowRecentTabsOnNTP();
|
| // page.
|
| bool ShouldSuppressInstantExtendedOnSRP();
|
|
|
| -// Returns true if |my_url| matches |other_url|.
|
| -bool MatchesOriginAndPath(const GURL& my_url, const GURL& other_url);
|
| -
|
| // Transforms the input |url| into its "effective URL". The returned URL
|
| // facilitates grouping process-per-site. The |url| is transformed, for
|
| // example, from
|
| @@ -239,7 +239,6 @@ bool GetBoolValueForFlagWithDefault(const std::string& flag,
|
| const FieldTrialFlags& flags);
|
|
|
| // Returns the Cacheable New Tab Page URL for the given |profile|.
|
| -// Exposed for testing only.
|
| GURL GetNewTabPageURL(Profile* profile);
|
|
|
| // Let tests reset the gate that prevents metrics from being sent more than
|
|
|