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 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
213 // Message sent from the renderer to the browser to indicate if download button | 213 // Message sent from the renderer to the browser to indicate if download button |
214 // is being shown in error page. | 214 // is being shown in error page. |
215 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SetIsShowingDownloadButtonInErrorPage, | 215 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_SetIsShowingDownloadButtonInErrorPage, |
216 bool /* showing download button */) | 216 bool /* showing download button */) |
217 #endif // defined(OS_ANDROID) | 217 #endif // defined(OS_ANDROID) |
218 | 218 |
219 //----------------------------------------------------------------------------- | 219 //----------------------------------------------------------------------------- |
220 // Misc messages | 220 // Misc messages |
221 // These are messages sent from the renderer to the browser process. | 221 // These are messages sent from the renderer to the browser process. |
222 | 222 |
223 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_UpdatedCacheStats, | |
224 uint64_t /* capacity */, | |
225 uint64_t /* size */) | |
226 | |
227 // Tells the browser that content in the current page was blocked due to the | 223 // Tells the browser that content in the current page was blocked due to the |
228 // user's content settings. | 224 // user's content settings. |
229 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, | 225 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_ContentBlocked, |
230 ContentSettingsType /* type of blocked content */, | 226 ContentSettingsType /* type of blocked content */, |
231 base::string16 /* details on blocked content */) | 227 base::string16 /* details on blocked content */) |
232 | 228 |
233 // Sent by the renderer process to check whether access to web databases is | 229 // Sent by the renderer process to check whether access to web databases is |
234 // granted by content settings. | 230 // granted by content settings. |
235 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, | 231 IPC_SYNC_MESSAGE_CONTROL5_1(ChromeViewHostMsg_AllowDatabase, |
236 int /* render_frame_id */, | 232 int /* render_frame_id */, |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 // process so that they can be assigned to an Instant renderer. | 381 // process so that they can be assigned to an Instant renderer. |
386 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 382 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
387 std::vector<GURL> /* search_urls */, | 383 std::vector<GURL> /* search_urls */, |
388 GURL /* new_tab_page_url */) | 384 GURL /* new_tab_page_url */) |
389 | 385 |
390 #if BUILDFLAG(ENABLE_PLUGINS) | 386 #if BUILDFLAG(ENABLE_PLUGINS) |
391 // Sent by the renderer to check if crash reporting is enabled. | 387 // Sent by the renderer to check if crash reporting is enabled. |
392 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 388 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
393 bool /* enabled */) | 389 bool /* enabled */) |
394 #endif | 390 #endif |
OLD | NEW |