Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5426)

Unified Diff: chrome/browser/ui/search/search_ipc_router.h

Issue 2544883006: Cleanup: Replace NTPLoggingTileSource by ntp_tiles::NTPTileSource (Closed)
Patch Set: tests Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/ui/search/search_ipc_router.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 a097dbd0706123dca7bf225b24466966e1b77c8d..b878018f2941699b1294c380434aa44665a2771a 100644
--- a/chrome/browser/ui/search/search_ipc_router.h
+++ b/chrome/browser/ui/search/search_ipc_router.h
@@ -13,6 +13,7 @@
#include "base/time/time.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/omnibox/common/omnibox_focus_state.h"
#include "content/public/browser/web_contents_observer.h"
#include "ui/base/window_open_disposition.h"
@@ -58,12 +59,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,
- NTPLoggingTileSource tile_source) = 0;
+ ntp_tiles::NTPTileSource tile_source) = 0;
// Called to log a navigation from a given provider on the New Tab Page.
virtual void OnLogMostVisitedNavigation(
int position,
- NTPLoggingTileSource tile_source) = 0;
+ ntp_tiles::NTPTileSource tile_source) = 0;
// Called when the page wants to paste the |text| (or the clipboard contents
// if the |text| is empty) into the omnibox.
@@ -180,10 +181,10 @@ class SearchIPCRouter : public content::WebContentsObserver {
base::TimeDelta time) const;
void OnLogMostVisitedImpression(int page_seq_no,
int position,
- NTPLoggingTileSource tile_source) const;
+ ntp_tiles::NTPTileSource tile_source) const;
void OnLogMostVisitedNavigation(int page_seq_no,
int position,
- NTPLoggingTileSource tile_source) const;
+ ntp_tiles::NTPTileSource tile_source) const;
void OnPasteAndOpenDropDown(int page_seq_no,
const base::string16& text) const;
void OnChromeIdentityCheck(int page_seq_no,
« no previous file with comments | « no previous file | chrome/browser/ui/search/search_ipc_router.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698