| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 bool /* showing download button */) | 192 bool /* showing download button */) |
| 193 | 193 |
| 194 // Sent when navigating to chrome://sandbox to install bindings onto the WebUI. | 194 // Sent when navigating to chrome://sandbox to install bindings onto the WebUI. |
| 195 IPC_MESSAGE_ROUTED0(ChromeViewMsg_AddSandboxStatusExtension) | 195 IPC_MESSAGE_ROUTED0(ChromeViewMsg_AddSandboxStatusExtension) |
| 196 #endif // defined(OS_ANDROID) | 196 #endif // defined(OS_ANDROID) |
| 197 | 197 |
| 198 //----------------------------------------------------------------------------- | 198 //----------------------------------------------------------------------------- |
| 199 // Misc messages | 199 // Misc messages |
| 200 // These are messages sent from the renderer to the browser process. | 200 // These are messages sent from the renderer to the browser process. |
| 201 | 201 |
| 202 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_UpdatedCacheStats, | |
| 203 uint64_t /* capacity */, | |
| 204 uint64_t /* size */) | |
| 205 | |
| 206 // Tells the browser that content in the current page was blocked due to the | 202 // Tells the browser that content in the current page was blocked due to the |
| 207 // user's content settings. | 203 // user's content settings. |
| 208 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, | 204 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, |
| 209 ContentSettingsType /* type of blocked content */, | 205 ContentSettingsType /* type of blocked content */, |
| 210 base::string16 /* details on blocked content */) | 206 base::string16 /* details on blocked content */) |
| 211 | 207 |
| 212 // Sent by the renderer process to check whether access to web databases is | 208 // Sent by the renderer process to check whether access to web databases is |
| 213 // granted by content settings. | 209 // granted by content settings. |
| 214 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, | 210 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, |
| 215 int /* render_frame_id */, | 211 int /* render_frame_id */, |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 // process so that they can be assigned to an Instant renderer. | 332 // process so that they can be assigned to an Instant renderer. |
| 337 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 333 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 338 std::vector<GURL> /* search_urls */, | 334 std::vector<GURL> /* search_urls */, |
| 339 GURL /* new_tab_page_url */) | 335 GURL /* new_tab_page_url */) |
| 340 | 336 |
| 341 #if BUILDFLAG(ENABLE_PLUGINS) | 337 #if BUILDFLAG(ENABLE_PLUGINS) |
| 342 // Sent by the renderer to check if crash reporting is enabled. | 338 // Sent by the renderer to check if crash reporting is enabled. |
| 343 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 339 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 344 bool /* enabled */) | 340 bool /* enabled */) |
| 345 #endif | 341 #endif |
| OLD | NEW |