Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 5917001: Change the "Disable outdated plug-ins" lab to block them instead. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rename command line switch and viewmsg Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 */)
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698