From 9b6db26fcc22a7a4ec0510a93733b2e190d9e649 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" Date: Mon, 11 Apr 2011 04:27:47 +0000 Subject: Create a VarPrivate interface to contain the scripting helper functions of Var. Currently, the old functions are left in Var. When people have a chance to move to this new API, we can delete them from Var. This also adds new enums for ARRAY and DICTIONARY vars, and makes the var C++ wrapper forward-compatible with them by refcounting any enums that it doesn't know about. Review URL: http://codereview.chromium.org/6823016 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@81068 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/ppapi_cpp.gypi | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'ppapi/ppapi_cpp.gypi') diff --git a/ppapi/ppapi_cpp.gypi b/ppapi/ppapi_cpp.gypi index c636b7c..959d606 100644 --- a/ppapi/ppapi_cpp.gypi +++ b/ppapi/ppapi_cpp.gypi @@ -205,6 +205,10 @@ # Deprecated interfaces. 'cpp/dev/scriptable_object_deprecated.h', 'cpp/dev/scriptable_object_deprecated.cc', + + # Private interfaces. + 'cpp/private/var_private.cc', + 'cpp/private/var_private.h', ], 'conditions': [ ['OS=="win"', { -- cgit v1.1