OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Multiply-included file, no traditional include guard. | 5 // Multiply-included file, no traditional include guard. |
6 #include <stdint.h> | 6 #include <stdint.h> |
7 #include <map> | 7 #include <map> |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
266 | 266 |
267 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetSuggestionToPrefetch, | 267 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSetSuggestionToPrefetch, |
268 InstantSuggestion /* suggestion */) | 268 InstantSuggestion /* suggestion */) |
269 | 269 |
270 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, | 270 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxSubmit, |
271 base::string16 /* value */) | 271 base::string16 /* value */) |
272 | 272 |
273 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 273 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
274 ThemeBackgroundInfo /* value */) | 274 ThemeBackgroundInfo /* value */) |
275 | 275 |
276 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, | |
277 bool /* sync_history */) | |
278 | |
276 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, | 279 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, |
277 base::string16 /* identity */, | 280 base::string16 /* identity */, |
278 bool /* identity_match */) | 281 bool /* identity_match */) |
279 | 282 |
280 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch) | 283 IPC_MESSAGE_ROUTED0(ChromeViewMsg_SearchBoxToggleVoiceSearch) |
281 | 284 |
282 // Sent on process startup to indicate whether this process is running in | 285 // Sent on process startup to indicate whether this process is running in |
283 // incognito mode. | 286 // incognito mode. |
284 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, | 287 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, |
285 bool /* is_incognito_processs */) | 288 bool /* is_incognito_processs */) |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
590 int /* position */, | 593 int /* position */, |
591 base::string16 /* provider */) | 594 base::string16 /* provider */) |
592 | 595 |
593 // Logs a navigation on one of the Most Visited tile on the InstantExtended | 596 // Logs a navigation on one of the Most Visited tile on the InstantExtended |
594 // New Tab Page. | 597 // New Tab Page. |
595 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedNavigation, | 598 IPC_MESSAGE_ROUTED3(ChromeViewHostMsg_LogMostVisitedNavigation, |
596 int /* page_seq_no */, | 599 int /* page_seq_no */, |
597 int /* position */, | 600 int /* position */, |
598 base::string16 /* provider */) | 601 base::string16 /* provider */) |
599 | 602 |
603 // The Instant page asks whether the user sync its history. | |
Mathieu
2014/11/06 14:12:52
*syncs
beaudoin
2014/11/07 16:16:24
Done.
| |
604 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_HistorySyncCheck, | |
605 int /* page_seq_no */) | |
606 | |
600 // The Instant page asks for Chrome identity check against |identity|. | 607 // The Instant page asks for Chrome identity check against |identity|. |
601 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ChromeIdentityCheck, | 608 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ChromeIdentityCheck, |
602 int /* page_seq_no */, | 609 int /* page_seq_no */, |
603 base::string16 /* identity */) | 610 base::string16 /* identity */) |
604 | 611 |
605 // Tells InstantExtended to set the omnibox focus state. | 612 // Tells InstantExtended to set the omnibox focus state. |
606 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, | 613 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_FocusOmnibox, |
607 int /* page_seq_no */, | 614 int /* page_seq_no */, |
608 OmniboxFocusState /* state */) | 615 OmniboxFocusState /* state */) |
609 | 616 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
651 // process so that they can be assigned to an Instant renderer. | 658 // process so that they can be assigned to an Instant renderer. |
652 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 659 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
653 std::vector<GURL> /* search_urls */, | 660 std::vector<GURL> /* search_urls */, |
654 GURL /* new_tab_page_url */) | 661 GURL /* new_tab_page_url */) |
655 | 662 |
656 #if defined(ENABLE_PLUGINS) | 663 #if defined(ENABLE_PLUGINS) |
657 // Sent by the renderer to check if crash reporting is enabled. | 664 // Sent by the renderer to check if crash reporting is enabled. |
658 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 665 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
659 bool /* enabled */) | 666 bool /* enabled */) |
660 #endif | 667 #endif |
OLD | NEW |