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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
123 // Tells the render frame to load all blocked plugins with the given identifier. | 123 // Tells the render frame to load all blocked plugins with the given identifier. |
124 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, | 124 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, |
125 std::string /* identifier */) | 125 std::string /* identifier */) |
126 | 126 |
127 // Tells the renderer to create a FieldTrial, and by using a 100% probability | 127 // Tells the renderer to create a FieldTrial, and by using a 100% probability |
128 // for the FieldTrial, forces the FieldTrial to have assigned group name. | 128 // for the FieldTrial, forces the FieldTrial to have assigned group name. |
129 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup, | 129 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetFieldTrialGroup, |
130 std::string /* field trial name */, | 130 std::string /* field trial name */, |
131 std::string /* group name that was assigned. */) | 131 std::string /* group name that was assigned. */) |
132 | 132 |
133 // Sent to allow or forbid the running of insecure mixed-content. | |
134 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetAllowRunningInsecureContent, | |
135 bool /* allowed */) | |
136 | |
137 IPC_MESSAGE_ROUTED0(ChromeViewMsg_ReloadFrame) | |
138 | |
139 // Tells the renderer whether or not a file system access has been allowed. | 133 // Tells the renderer whether or not a file system access has been allowed. |
140 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, | 134 IPC_MESSAGE_ROUTED2(ChromeViewMsg_RequestFileSystemAccessAsyncResponse, |
141 int /* request_id */, | 135 int /* request_id */, |
142 bool /* allowed */) | 136 bool /* allowed */) |
143 | 137 |
144 // Sent when the profile changes the kSafeBrowsingEnabled preference. | 138 // Sent when the profile changes the kSafeBrowsingEnabled preference. |
145 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, | 139 IPC_MESSAGE_ROUTED1(ChromeViewMsg_SetClientSidePhishingDetection, |
146 bool /* enable_phishing_detection */) | 140 bool /* enable_phishing_detection */) |
147 | 141 |
148 // Reloads the image selected by the most recently opened context menu | 142 // Reloads the image selected by the most recently opened context menu |
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
395 // process so that they can be assigned to an Instant renderer. | 389 // process so that they can be assigned to an Instant renderer. |
396 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 390 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
397 std::vector<GURL> /* search_urls */, | 391 std::vector<GURL> /* search_urls */, |
398 GURL /* new_tab_page_url */) | 392 GURL /* new_tab_page_url */) |
399 | 393 |
400 #if BUILDFLAG(ENABLE_PLUGINS) | 394 #if BUILDFLAG(ENABLE_PLUGINS) |
401 // Sent by the renderer to check if crash reporting is enabled. | 395 // Sent by the renderer to check if crash reporting is enabled. |
402 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 396 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
403 bool /* enabled */) | 397 bool /* enabled */) |
404 #endif | 398 #endif |
OLD | NEW |