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

Side by Side Diff: content/common/view_messages.h

Issue 7709020: Moving the ViewHostMsg_PDFHasUnsupportedFeature IPC message to Chrome as PDF is a chrome specific (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 months 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/renderer/chrome_ppb_pdf_impl.cc ('k') | content/renderer/pepper_plugin_delegate_impl.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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 1992 matching lines...) Expand 10 before | Expand all | Expand 10 after
2003 // cache |data| associated with |url|. 2003 // cache |data| associated with |url|.
2004 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata, 2004 IPC_MESSAGE_CONTROL3(ViewHostMsg_DidGenerateCacheableMetadata,
2005 GURL /* url */, 2005 GURL /* url */,
2006 double /* expected_response_time */, 2006 double /* expected_response_time */,
2007 std::vector<char> /* data */) 2007 std::vector<char> /* data */)
2008 2008
2009 // Updates the content restrictions, i.e. to disable print/copy. 2009 // Updates the content restrictions, i.e. to disable print/copy.
2010 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateContentRestrictions, 2010 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateContentRestrictions,
2011 int /* restrictions */) 2011 int /* restrictions */)
2012 2012
2013 // The currently displayed PDF has an unsupported feature.
2014 IPC_MESSAGE_ROUTED0(ViewHostMsg_PDFHasUnsupportedFeature)
2015
2016 // Brings up SaveAs... dialog to save specified URL. 2013 // Brings up SaveAs... dialog to save specified URL.
2017 IPC_MESSAGE_ROUTED1(ViewHostMsg_SaveURLAs, 2014 IPC_MESSAGE_ROUTED1(ViewHostMsg_SaveURLAs,
2018 GURL /* url */) 2015 GURL /* url */)
2019 2016
2020 // Notifies when default plugin updates status of the missing plugin. 2017 // Notifies when default plugin updates status of the missing plugin.
2021 IPC_MESSAGE_ROUTED1(ViewHostMsg_MissingPluginStatus, 2018 IPC_MESSAGE_ROUTED1(ViewHostMsg_MissingPluginStatus,
2022 int /* status */) 2019 int /* status */)
2023 2020
2024 // Displays a JavaScript out-of-memory message in the infobar. 2021 // Displays a JavaScript out-of-memory message in the infobar.
2025 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory) 2022 IPC_MESSAGE_ROUTED0(ViewHostMsg_JSOutOfMemory)
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
2075 int32 /* complete status */) 2072 int32 /* complete status */)
2076 2073
2077 // Request updated information about the client firewall traversal policy. 2074 // Request updated information about the client firewall traversal policy.
2078 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message 2075 // Will result in a ViewMsg_UpdateRemoteAccessClientFirewallTraversal message
2079 // being sent back. 2076 // being sent back.
2080 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal) 2077 IPC_MESSAGE_ROUTED0(ViewHostMsg_RequestRemoteAccessClientFirewallTraversal)
2081 2078
2082 // Notifies the browser of an event occurring in the media pipeline. 2079 // Notifies the browser of an event occurring in the media pipeline.
2083 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, 2080 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent,
2084 media::MediaLogEvent /* event */) 2081 media::MediaLogEvent /* event */)
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_ppb_pdf_impl.cc ('k') | content/renderer/pepper_plugin_delegate_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698