| 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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 244 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, | 244 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SearchBoxThemeChanged, |
| 245 ThemeBackgroundInfo /* value */) | 245 ThemeBackgroundInfo /* value */) |
| 246 | 246 |
| 247 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, | 247 IPC_MESSAGE_ROUTED1(ChromeViewMsg_HistorySyncCheckResult, |
| 248 bool /* sync_history */) | 248 bool /* sync_history */) |
| 249 | 249 |
| 250 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, | 250 IPC_MESSAGE_ROUTED2(ChromeViewMsg_ChromeIdentityCheckResult, |
| 251 base::string16 /* identity */, | 251 base::string16 /* identity */, |
| 252 bool /* identity_match */) | 252 bool /* identity_match */) |
| 253 | 253 |
| 254 // Sent on process startup to indicate whether this process is running in | |
| 255 // incognito mode. | |
| 256 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetIsIncognitoProcess, | |
| 257 bool /* is_incognito_processs */) | |
| 258 | |
| 259 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent. | 254 // Sent in response to FrameHostMsg_DidBlockRunningInsecureContent. |
| 260 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, | 255 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, |
| 261 bool /* allowed */) | 256 bool /* allowed */) |
| 262 | 257 |
| 263 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) | 258 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) |
| 264 | 259 |
| 265 // Tells the renderer whether or not a file system access has been allowed. | 260 // Tells the renderer whether or not a file system access has been allowed. |
| 266 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, | 261 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, |
| 267 int /* request_id */, | 262 int /* request_id */, |
| 268 bool /* allowed */) | 263 bool /* allowed */) |
| (...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 592 // process so that they can be assigned to an Instant renderer. | 587 // process so that they can be assigned to an Instant renderer. |
| 593 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 588 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 594 std::vector<GURL> /* search_urls */, | 589 std::vector<GURL> /* search_urls */, |
| 595 GURL /* new_tab_page_url */) | 590 GURL /* new_tab_page_url */) |
| 596 | 591 |
| 597 #if BUILDFLAG(ENABLE_PLUGINS) | 592 #if BUILDFLAG(ENABLE_PLUGINS) |
| 598 // Sent by the renderer to check if crash reporting is enabled. | 593 // Sent by the renderer to check if crash reporting is enabled. |
| 599 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 594 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 600 bool /* enabled */) | 595 bool /* enabled */) |
| 601 #endif | 596 #endif |
| OLD | NEW |