OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 #include <map> | 5 #include <map> |
6 #include <string> | 6 #include <string> |
7 #include <vector> | 7 #include <vector> |
8 | 8 |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 1802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1813 // Notifies when default plugin updates status of the missing plugin. | 1813 // Notifies when default plugin updates status of the missing plugin. |
1814 IPC_MESSAGE_ROUTED1(ViewHostMsg_MissingPluginStatus, | 1814 IPC_MESSAGE_ROUTED1(ViewHostMsg_MissingPluginStatus, |
1815 int /* status */) | 1815 int /* status */) |
1816 | 1816 |
1817 // Sent by the renderer process to indicate that a plugin instance has | 1817 // Sent by the renderer process to indicate that a plugin instance has |
1818 // crashed. | 1818 // crashed. |
1819 IPC_MESSAGE_ROUTED1(ViewHostMsg_CrashedPlugin, | 1819 IPC_MESSAGE_ROUTED1(ViewHostMsg_CrashedPlugin, |
1820 FilePath /* plugin_path */) | 1820 FilePath /* plugin_path */) |
1821 | 1821 |
1822 // Notifies when a plugin couldn't be loaded because it's outdated. | 1822 // Notifies when a plugin couldn't be loaded because it's outdated. |
1823 IPC_MESSAGE_ROUTED2(ViewHostMsg_DisabledOutdatedPlugin, | 1823 IPC_MESSAGE_ROUTED2(ViewHostMsg_BlockedOutdatedPlugin, |
1824 string16, /* name */ | 1824 string16, /* name */ |
1825 GURL /* update_url */) | 1825 GURL /* update_url */) |
1826 | 1826 |
1827 // Displays a JavaScript out-of-memory message in the infobar. | 1827 // Displays a JavaScript out-of-memory message in the infobar. |
1828 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory) | 1828 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory) |
1829 | 1829 |
1830 // Displays a box to confirm that the user wants to navigate away from the | 1830 // Displays a box to confirm that the user wants to navigate away from the |
1831 // page. Replies true if yes, false otherwise, the reply string is ignored, | 1831 // page. Replies true if yes, false otherwise, the reply string is ignored, |
1832 // but is included so that we can use OnJavaScriptMessageBoxClosed. | 1832 // but is included so that we can use OnJavaScriptMessageBoxClosed. |
1833 IPC_SYNC_MESSAGE_ROUTED2_2(ViewHostMsg_RunBeforeUnloadConfirm, | 1833 IPC_SYNC_MESSAGE_ROUTED2_2(ViewHostMsg_RunBeforeUnloadConfirm, |
(...skipping 830 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2664 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperQueryFile, | 2664 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperQueryFile, |
2665 FilePath /* path */, | 2665 FilePath /* path */, |
2666 base::PlatformFileInfo, /* info */ | 2666 base::PlatformFileInfo, /* info */ |
2667 base::PlatformFileError /* error_code */) | 2667 base::PlatformFileError /* error_code */) |
2668 | 2668 |
2669 // Get the directory's contents. | 2669 // Get the directory's contents. |
2670 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, | 2670 IPC_SYNC_MESSAGE_CONTROL1_2(ViewHostMsg_PepperGetDirContents, |
2671 FilePath /* path */, | 2671 FilePath /* path */, |
2672 PepperDirContents, /* contents */ | 2672 PepperDirContents, /* contents */ |
2673 base::PlatformFileError /* error_code */) | 2673 base::PlatformFileError /* error_code */) |
OLD | NEW |