| 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 <string> | 7 #include <string> |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/files/file_path.h" | 10 #include "base/files/file_path.h" |
| (...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 239 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
| 240 ThemeBackgroundInfo /* value */) | 240 ThemeBackgroundInfo /* value */) |
| 241 | 241 |
| 242 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, | 242 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, |
| 243 bool /* sync_history */) | 243 bool /* sync_history */) |
| 244 | 244 |
| 245 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, | 245 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, |
| 246 base::string16 /* identity */, | 246 base::string16 /* identity */, |
| 247 bool /* identity_match */) | 247 bool /* identity_match */) |
| 248 | 248 |
| 249 // Sent on process startup to indicate whether this process is running in | |
| 250 // incognito mode. | |
| 251 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, | |
| 252 bool /* is_incognito_processs */) | |
| 253 | |
| 254 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent. | 249 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent. |
| 255 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, | 250 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, |
| 256 bool /* allowed */) | 251 bool /* allowed */) |
| 257 | 252 |
| 258 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) | 253 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) |
| 259 | 254 |
| 260 // Tells the renderer whether or not a file system access has been allowed. | 255 // Tells the renderer whether or not a file system access has been allowed. |
| 261 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, | 256 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, |
| 262 int /* request_id */, | 257 int /* request_id */, |
| 263 bool /* allowed */) | 258 bool /* allowed */) |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 594 | 589 |
| 595 #if BUILDFLAG(ENABLE_PLUGINS) | 590 #if BUILDFLAG(ENABLE_PLUGINS) |
| 596 // Sent by the renderer to check if crash reporting is enabled. | 591 // Sent by the renderer to check if crash reporting is enabled. |
| 597 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 592 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 598 bool /* enabled */) | 593 bool /* enabled */) |
| 599 #endif | 594 #endif |
| 600 | 595 |
| 601 // Sent by the renderer to indicate that a fields trial has been activated. | 596 // Sent by the renderer to indicate that a fields trial has been activated. |
| 602 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, | 597 IPC_MESSAGE_CONTROL1(ChromeViewHostMsg_FieldTrialActivated, |
| 603 std::string /* name */) | 598 std::string /* name */) |
| OLD | NEW |