| Index: chrome/browser/ui/search/search_ipc_router.h
|
| diff --git a/chrome/browser/ui/search/search_ipc_router.h b/chrome/browser/ui/search/search_ipc_router.h
|
| index 62bbfb1855dd21ccf550cc684bad309537128b9f..fdd09bed012718faf0fb7b52b9e1ea68afe01490 100644
|
| --- a/chrome/browser/ui/search/search_ipc_router.h
|
| +++ b/chrome/browser/ui/search/search_ipc_router.h
|
| @@ -14,7 +14,7 @@
|
| #include "chrome/common/instant.mojom.h"
|
| #include "chrome/common/search/instant_types.h"
|
| #include "chrome/common/search/ntp_logging_events.h"
|
| -#include "components/ntp_tiles/ntp_tile_source.h"
|
| +#include "components/ntp_tiles/tile_source.h"
|
| #include "components/omnibox/common/omnibox_focus_state.h"
|
| #include "content/public/browser/web_contents_binding_set.h"
|
| #include "content/public/browser/web_contents_observer.h"
|
| @@ -62,12 +62,12 @@ class SearchIPCRouter : public content::WebContentsObserver,
|
| // Called to log an impression from a given provider on the New Tab Page.
|
| virtual void OnLogMostVisitedImpression(
|
| int position,
|
| - ntp_tiles::NTPTileSource tile_source) = 0;
|
| + ntp_tiles::TileSource tile_source) = 0;
|
|
|
| // Called to log a navigation from a given provider on the New Tab Page.
|
| virtual void OnLogMostVisitedNavigation(
|
| int position,
|
| - ntp_tiles::NTPTileSource tile_source) = 0;
|
| + ntp_tiles::TileSource tile_source) = 0;
|
|
|
| // Called when the page wants to paste the |text| (or the clipboard contents
|
| // if the |text| is empty) into the omnibox.
|
| @@ -183,10 +183,10 @@ class SearchIPCRouter : public content::WebContentsObserver,
|
| base::TimeDelta time) override;
|
| void LogMostVisitedImpression(int page_seq_no,
|
| int position,
|
| - ntp_tiles::NTPTileSource tile_source) override;
|
| + ntp_tiles::TileSource tile_source) override;
|
| void LogMostVisitedNavigation(int page_seq_no,
|
| int position,
|
| - ntp_tiles::NTPTileSource tile_source) override;
|
| + ntp_tiles::TileSource tile_source) override;
|
| void PasteAndOpenDropdown(int page_seq_no,
|
| const base::string16& text) override;
|
| void ChromeIdentityCheck(int page_seq_no,
|
|
|