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

Unified Diff: chrome/renderer/searchbox/searchbox.h

Issue 178253008: Redoing Issue 36073011: Allowing file:/// in Instant Extended's Most Visited links. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unused consts. Created 6 years, 9 months 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
Index: chrome/renderer/searchbox/searchbox.h
diff --git a/chrome/renderer/searchbox/searchbox.h b/chrome/renderer/searchbox/searchbox.h
index 4858021bf132a11e9a07d789e5d9b7b6340a7684..f294d82d8f60c601d810e2fd7ef4dc21ef1344be 100644
--- a/chrome/renderer/searchbox/searchbox.h
+++ b/chrome/renderer/searchbox/searchbox.h
@@ -31,8 +31,11 @@ class SearchBox : public content::RenderViewObserver,
// Sends ChromeViewHostMsg_LogEvent to the browser.
void LogEvent(NTPLoggingEventType event);
- // Sends ChromeViewHostMsg_LogImpression to the browser.
- void LogImpression(int position, const base::string16& provider);
+ // Sends ChromeViewHostMsg_LogMostVisitedImpression to the browser.
+ void LogMostVisitedImpression(int position, const base::string16& provider);
+
+ // Sends ChromeViewHostMsg_LogMostVisitedNavigation to the browser.
+ void LogMostVisitedNavigation(int position, const base::string16& provider);
// Sends ChromeViewHostMsg_ChromeIdentityCheck to the browser.
void CheckIsUserSignedInToChromeAs(const base::string16& identity);

Powered by Google App Engine
This is Rietveld 408576698