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

Side by Side Diff: ppapi/api/private/ppb_flash.idl

Issue 10173029: Add a PPB_Flash_Print interface and implement in Chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/pepper/ppb_pdf_impl.cc ('k') | ppapi/api/private/ppb_flash_print.idl » ('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) 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 5
6 /** 6 /**
7 * This file contains the <code>PPB_Flash</code> interface. 7 * This file contains the <code>PPB_Flash</code> interface.
8 */ 8 */
9 9
10 label Chrome { 10 label Chrome {
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 /** 110 /**
111 * Returns whether the given rectangle (in the plugin) is topmost, i.e., above 111 * Returns whether the given rectangle (in the plugin) is topmost, i.e., above
112 * all other web content. 112 * all other web content.
113 */ 113 */
114 [version=12.1] 114 [version=12.1]
115 PP_Bool IsRectTopmost( 115 PP_Bool IsRectTopmost(
116 [in] PP_Instance instance, 116 [in] PP_Instance instance,
117 [in] PP_Rect rect); 117 [in] PP_Rect rect);
118 118
119 /** 119 /**
120 * Invokes printing for the given instance. 120 * Does nothing, deprecated. See PPB_Flash_Print.
121 */ 121 */
122 [version=12.1] 122 [version=12.1]
123 int32_t InvokePrinting( 123 int32_t InvokePrinting(
124 [in] PP_Instance instance); 124 [in] PP_Instance instance);
125 125
126 /** 126 /**
127 * Indicates that there's activity and, e.g., the screensaver shouldn't kick 127 * Indicates that there's activity and, e.g., the screensaver shouldn't kick
128 * in. 128 * in.
129 */ 129 */
130 [version=12.1] 130 [version=12.1]
(...skipping 28 matching lines...) Expand all
159 struct PP_Var (*GetProxyForURL)(PP_Instance instance, const char* url); 159 struct PP_Var (*GetProxyForURL)(PP_Instance instance, const char* url);
160 int32_t (*Navigate)(PP_Resource request_info, 160 int32_t (*Navigate)(PP_Resource request_info,
161 const char* target, 161 const char* target,
162 bool from_user_action); 162 bool from_user_action);
163 void (*RunMessageLoop)(PP_Instance instance); 163 void (*RunMessageLoop)(PP_Instance instance);
164 void (*QuitMessageLoop)(PP_Instance instance); 164 void (*QuitMessageLoop)(PP_Instance instance);
165 double (*GetLocalTimeZoneOffset)(PP_Instance instance, PP_Time t); 165 double (*GetLocalTimeZoneOffset)(PP_Instance instance, PP_Time t);
166 struct PP_Var (*GetCommandLineArgs)(PP_Module module); 166 struct PP_Var (*GetCommandLineArgs)(PP_Module module);
167 }; 167 };
168 #endinl 168 #endinl
OLDNEW
« no previous file with comments | « chrome/renderer/pepper/ppb_pdf_impl.cc ('k') | ppapi/api/private/ppb_flash_print.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698