summaryrefslogtreecommitdiffstats
path: root/third_party/npapi
diff options
context:
space:
mode:
authorstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-03 21:34:06 +0000
committerstuartmorgan@chromium.org <stuartmorgan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-06-03 21:34:06 +0000
commit51a0bb591440055191f7dd5ca1077238369b57bd (patch)
treebc214efcb3129ee966b708a5d91717c77e5145be /third_party/npapi
parent1f662c9f7cd4f27f8b8d4eedb238b97fa56b055f (diff)
downloadchromium_src-51a0bb591440055191f7dd5ca1077238369b57bd.zip
chromium_src-51a0bb591440055191f7dd5ca1077238369b57bd.tar.gz
chromium_src-51a0bb591440055191f7dd5ca1077238369b57bd.tar.bz2
Implement support for NPDrawingModelInvalidatingCoreAnimation in Mac plugins
BUG=38982 TEST=None (no plugins use it yet) Review URL: http://codereview.chromium.org/2561005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@48877 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party/npapi')
-rw-r--r--third_party/npapi/bindings/npapi.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/third_party/npapi/bindings/npapi.h b/third_party/npapi/bindings/npapi.h
index 2f4c755..6878dc8 100644
--- a/third_party/npapi/bindings/npapi.h
+++ b/third_party/npapi/bindings/npapi.h
@@ -312,7 +312,8 @@ typedef enum {
#endif
NPDrawingModelCoreGraphics = 1,
NPDrawingModelOpenGL = 2,
- NPDrawingModelCoreAnimation = 3
+ NPDrawingModelCoreAnimation = 3,
+ NPDrawingModelInvalidatingCoreAnimation = 4
} NPDrawingModel;
typedef enum {
@@ -447,6 +448,7 @@ typedef enum {
, NPNVsupportsCoreGraphicsBool = 2001
, NPNVsupportsOpenGLBool = 2002
, NPNVsupportsCoreAnimationBool = 2003
+ , NPNVsupportsInvalidatingCoreAnimationBool = 2004
#ifndef NP_NO_CARBON
, NPNVsupportsCarbonBool = 3000 /* TRUE if the browser supports the Carbon event model */
#endif