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

Side by Side Diff: components/pdf/common/pdf_messages.h

Issue 2455543002: Convert PDF component IPC to mojo. (Closed)
Patch Set: Feedback Created 3 years, 8 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
« no previous file with comments | « components/pdf/common/pdf_message_generator.cc ('k') | components/pdf/renderer/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 // Multiply-included file, no traditional include guard.
6 #include <string.h>
7
8 #include "content/public/common/common_param_traits_macros.h"
9 #include "content/public/common/referrer.h"
10 #include "ipc/ipc_message_macros.h"
11 #include "url/gurl.h"
12 #include "url/ipc/url_param_traits.h"
13
14 #define IPC_MESSAGE_START PDFMsgStart
15
16 // Updates the content restrictions, i.e. to disable print/copy.
17 IPC_MESSAGE_ROUTED1(PDFHostMsg_PDFUpdateContentRestrictions,
18 int /* restrictions */)
19
20 // The currently displayed PDF has an unsupported feature.
21 IPC_MESSAGE_ROUTED0(PDFHostMsg_PDFHasUnsupportedFeature)
22
23 // Brings up SaveAs... dialog to save specified URL.
24 IPC_MESSAGE_ROUTED2(PDFHostMsg_PDFSaveURLAs,
25 GURL /* url */,
26 content::Referrer /* referrer */)
OLDNEW
« no previous file with comments | « components/pdf/common/pdf_message_generator.cc ('k') | components/pdf/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698