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

Unified Diff: chrome/common/render_messages.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/common/render_messages.h
diff --git a/chrome/common/render_messages.h b/chrome/common/render_messages.h
index 2559e3899f25710b2c6dcc0417b31da0292c0d4d..d8e4d18bd95c07d355307f22969a0b022d5c8b8a 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -702,7 +702,14 @@ IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_LogEvent,
// Logs an impression on one of the Most Visited tile on the InstantExtended
// New Tab Page.
-IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogImpression,
+IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedImpression,
+ int /* page_id */,
+ int /* position */,
+ base::string16 /* provider */)
+
+// Logs a navigation on one of the Most Visited tile on the InstantExtended
+// New Tab Page.
+IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedNavigation,
int /* page_id */,
int /* position */,
base::string16 /* provider */)

Powered by Google App Engine
This is Rietveld 408576698