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