| 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 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 299 IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateDownloading) | 299 IPC_MESSAGE_ROUTED0(ChromeViewMsg_PluginComponentUpdateDownloading) |
| 300 | 300 |
| 301 | 301 |
| 302 // Tells the browser to show the Flash permission bubble in the same tab. | 302 // Tells the browser to show the Flash permission bubble in the same tab. |
| 303 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) | 303 IPC_MESSAGE_ROUTED0(ChromeViewHostMsg_ShowFlashPermissionBubble) |
| 304 | 304 |
| 305 // Tells the browser that there was an error loading a plugin. | 305 // Tells the browser that there was an error loading a plugin. |
| 306 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, | 306 IPC_MESSAGE_ROUTED1(ChromeViewHostMsg_CouldNotLoadPlugin, |
| 307 base::FilePath /* plugin_path */) | 307 base::FilePath /* plugin_path */) |
| 308 | 308 |
| 309 // Notification that the page has an OpenSearch description document | |
| 310 // associated with it. | |
| 311 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_PageHasOSDD, | |
| 312 GURL /* page_url */, | |
| 313 GURL /* osdd_url */) | |
| 314 | |
| 315 // Notifies when a plugin couldn't be loaded because it's outdated. | 309 // Notifies when a plugin couldn't be loaded because it's outdated. |
| 316 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, | 310 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedOutdatedPlugin, |
| 317 int /* placeholder ID */, | 311 int /* placeholder ID */, |
| 318 std::string /* plugin group identifier */) | 312 std::string /* plugin group identifier */) |
| 319 | 313 |
| 320 // Notifies when a plugin couldn't be loaded because it requires a component | 314 // Notifies when a plugin couldn't be loaded because it requires a component |
| 321 // update. | 315 // update. |
| 322 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedComponentUpdatedPlugin, | 316 IPC_MESSAGE_ROUTED2(ChromeViewHostMsg_BlockedComponentUpdatedPlugin, |
| 323 int /* placeholder ID */, | 317 int /* placeholder ID */, |
| 324 std::string /* plugin group identifier */) | 318 std::string /* plugin group identifier */) |
| (...skipping 15 matching lines...) Expand all Loading... |
| 340 // process so that they can be assigned to an Instant renderer. | 334 // process so that they can be assigned to an Instant renderer. |
| 341 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, | 335 IPC_MESSAGE_CONTROL2(ChromeViewMsg_SetSearchURLs, |
| 342 std::vector<GURL> /* search_urls */, | 336 std::vector<GURL> /* search_urls */, |
| 343 GURL /* new_tab_page_url */) | 337 GURL /* new_tab_page_url */) |
| 344 | 338 |
| 345 #if BUILDFLAG(ENABLE_PLUGINS) | 339 #if BUILDFLAG(ENABLE_PLUGINS) |
| 346 // Sent by the renderer to check if crash reporting is enabled. | 340 // Sent by the renderer to check if crash reporting is enabled. |
| 347 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, | 341 IPC_SYNC_MESSAGE_CONTROL0_1(ChromeViewHostMsg_IsCrashReportingEnabled, |
| 348 bool /* enabled */) | 342 bool /* enabled */) |
| 349 #endif | 343 #endif |
| OLD | NEW |