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 <map> | 6 #include <map> |
7 #include <set> | 7 #include <set> |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 // Tells the renderer to revert the text of translated page to its original | 349 // Tells the renderer to revert the text of translated page to its original |
350 // contents. | 350 // contents. |
351 IPC_MESSAGE_ROUTED1(ChromeViewMsg_RevertTranslation, | 351 IPC_MESSAGE_ROUTED1(ChromeViewMsg_RevertTranslation, |
352 int /* page id */) | 352 int /* page id */) |
353 | 353 |
354 // Sent on process startup to indicate whether this process is running in | 354 // Sent on process startup to indicate whether this process is running in |
355 // incognito mode. | 355 // incognito mode. |
356 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, | 356 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, |
357 bool /* is_incognito_processs */) | 357 bool /* is_incognito_processs */) |
358 | 358 |
359 // Sent on process startup to indicate whether the extension activity | |
360 // log is enabled. | |
361 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetExtensionActivityLogEnabled, | |
362 bool /* extension_activity_log_enabled */) | |
363 | |
364 // Sent in response to ViewHostMsg_DidBlockDisplayingInsecureContent. | 359 // Sent in response to ViewHostMsg_DidBlockDisplayingInsecureContent. |
365 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowDisplayingInsecureContent, | 360 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowDisplayingInsecureContent, |
366 bool /* allowed */) | 361 bool /* allowed */) |
367 | 362 |
368 // Sent in response to ViewHostMsg_DidBlockRunningInsecureContent. | 363 // Sent in response to ViewHostMsg_DidBlockRunningInsecureContent. |
369 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, | 364 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, |
370 bool /* allowed */) | 365 bool /* allowed */) |
371 | 366 |
372 // Tells renderer to always enforce mixed content blocking for this host. | 367 // Tells renderer to always enforce mixed content blocking for this host. |
373 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AddStrictSecurityHost, | 368 IPC_MESSAGE_ROUTED1(ChromeViewMsg_AddStrictSecurityHost, |
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
736 | 731 |
737 // Tells InstantExtended to undo one most visited item deletion. | 732 // Tells InstantExtended to undo one most visited item deletion. |
738 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, | 733 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SearchBoxUndoMostVisitedDeletion, |
739 int /* page_id */, | 734 int /* page_id */, |
740 GURL /* url */) | 735 GURL /* url */) |
741 | 736 |
742 // Tells InstantExtended whether the page supports voice search. | 737 // Tells InstantExtended whether the page supports voice search. |
743 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, | 738 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_SetVoiceSearchSupported, |
744 int /* page_id */, | 739 int /* page_id */, |
745 bool /* supported */) | 740 bool /* supported */) |
OLD | NEW |