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 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
223 // Message sent from the renderer to the browser to indicate if download button | 223 // Message sent from the renderer to the browser to indicate if download button |
224 // is being shown in error page. | 224 // is being shown in error page. |
225 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SetIsShowingDownloadButtonInErrorPage, | 225 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SetIsShowingDownloadButtonInErrorPage, |
226 bool /* showing download button */) | 226 bool /* showing download button */) |
227 #endif // defined(OS_ANDROID) | 227 #endif // defined(OS_ANDROID) |
228 | 228 |
229 //----------------------------------------------------------------------------- | 229 //----------------------------------------------------------------------------- |
230 // Misc messages | 230 // Misc messages |
231 // These are messages sent from the renderer to the browser process. | 231 // These are messages sent from the renderer to the browser process. |
232 | 232 |
233 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_UpdatedCacheStats, | |
234 uint64_t /* capacity */, | |
235 uint64_t /* size */) | |
236 | |
237 // Tells the browser that content in the current page was blocked due to the | 233 // Tells the browser that content in the current page was blocked due to the |
238 // user's content settings. | 234 // user's content settings. |
239 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, | 235 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, |
240 ContentSettingsType /* type of blocked content */, | 236 ContentSettingsType /* type of blocked content */, |
241 base::string16 /* details on blocked content */) | 237 base::string16 /* details on blocked content */) |
242 | 238 |
243 // Sent by the renderer process to check whether access to web databases is | 239 // Sent by the renderer process to check whether access to web databases is |
244 // granted by content settings. | 240 // granted by content settings. |
245 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, | 241 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, |
246 int /* render_frame_id */, | 242 int /* render_frame_id */, |
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 // process so that they can be assigned to an Instant renderer. | 396 // process so that they can be assigned to an Instant renderer. |
401 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 397 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
402 std::vector<GURL> /* search_urls */, | 398 std::vector<GURL> /* search_urls */, |
403 GURL /* new_tab_page_url */) | 399 GURL /* new_tab_page_url */) |
404 | 400 |
405 #if BUILDFLAG(ENABLE_PLUGINS) | 401 #if BUILDFLAG(ENABLE_PLUGINS) |
406 // Sent by the renderer to check if crash reporting is enabled. | 402 // Sent by the renderer to check if crash reporting is enabled. |
407 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 403 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
408 bool /* enabled */) | 404 bool /* enabled */) |
409 #endif | 405 #endif |
OLD | NEW |