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

Unified Diff: ppapi/api/private/ppb_flash.idl

Issue 9369003: Pepper: Add a function to PPB_Flash to check if a rect is topmost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add stubs for InvokePrinting() and UpdateActivity() Created 8 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | ppapi/c/private/ppb_flash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/api/private/ppb_flash.idl
diff --git a/ppapi/api/private/ppb_flash.idl b/ppapi/api/private/ppb_flash.idl
index c57b5a44c13f024d41f6c4f4b0f693b3b3ed70fd..997274e8a06a867d02915ff768f0b8edd458e1cc 100644
--- a/ppapi/api/private/ppb_flash.idl
+++ b/ppapi/api/private/ppb_flash.idl
@@ -8,7 +8,8 @@
*/
label Chrome {
- M17 = 12.0
+ M17 = 12.0,
+ M19 = 12.1
};
/**
@@ -104,6 +105,30 @@ interface PPB_Flash {
*/
void PreloadFontWin(
[in] mem_t logfontw);
+
+ /**
+ * Returns whether the given rectangle (in the plugin) is topmost, i.e., above
+ * all other web content.
+ */
+ [version=12.1]
+ PP_Bool IsRectTopmost(
+ [in] PP_Instance instance,
+ [in] PP_Rect rect);
+
+ /**
+ * Invokes printing for the given instance.
+ */
+ [version=12.1]
+ int32_t InvokePrinting(
+ [in] PP_Instance instance);
+
+ /**
+ * Indicates that there's activity and, e.g., the screensaver shouldn't kick
+ * in.
+ */
+ [version=12.1]
+ void UpdateActivity(
+ [in] PP_Instance instance);
};
#inline c
« no previous file with comments | « no previous file | ppapi/c/private/ppb_flash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698