Index: ppapi/shared_impl/var.h |
diff --git a/ppapi/shared_impl/var.h b/ppapi/shared_impl/var.h |
index 77f707c594eba6c0917854d0fdcc8b24aa5656e2..76654b425b3cab955e6860ef0bd96dfc91021ed7 100644 |
--- a/ppapi/shared_impl/var.h |
+++ b/ppapi/shared_impl/var.h |
@@ -15,6 +15,7 @@ |
namespace ppapi { |
class ArrayBufferVar; |
+class DictionaryVar; |
class NPObjectVar; |
class ProxyObjectVar; |
class StringVar; |
@@ -34,6 +35,7 @@ class PPAPI_SHARED_EXPORT Var : public base::RefCounted<Var> { |
virtual ArrayBufferVar* AsArrayBufferVar(); |
virtual NPObjectVar* AsNPObjectVar(); |
virtual ProxyObjectVar* AsProxyObjectVar(); |
+ virtual DictionaryVar* AsDictionaryVar(); |
// Creates a PP_Var corresponding to this object. The return value will have |
// one reference addrefed on behalf of the caller. |