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

Unified Diff: chrome/common/render_messages.h

Issue 701973002: Separate checking the user identity and checking if the user is syncing his history in two differen… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 1 month 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 8bba1bcbc034b44a84c19bad3d8482a64013d12e..c393df40394705f7c203a347a44762fa6874e78c 100644
--- a/chrome/common/render_messages.h
+++ b/chrome/common/render_messages.h
@@ -273,6 +273,9 @@ IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit,
IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged,
ThemeBackgroundInfo /* value */)
+IPC_MESSAGE_ROUTED1(ChromeViewMsg_CheckUserSyncHistoryResult,
Mathieu 2014/11/05 13:38:42 HistorySyncCheckResult
beaudoin 2014/11/05 21:28:21 Done.
+ bool /* sync_history */)
+
IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult,
base::string16 /* identity */,
bool /* identity_match */)
@@ -597,6 +600,10 @@ IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedNavigation,
int /* position */,
base::string16 /* provider */)
+// The Instant page asks whether the user sync its history.
+IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CheckUserSyncHistory,
+ int /* page_seq_no */)
+
// The Instant page asks for Chrome identity check against |identity|.
IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ChromeIdentityCheck,
int /* page_seq_no */,

Powered by Google App Engine
This is Rietveld 408576698