From c637ba992deae66085bdb2ae021a38e7fc30c0ef Mon Sep 17 00:00:00 2001 From: "dmichael@chromium.org" Date: Wed, 13 Jul 2011 01:58:52 +0000 Subject: Turn off scripting by default. If this sticks, a later CL will delete all the dead code. BUG=82606 TEST=trybots Review URL: http://codereview.chromium.org/7345014 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92294 0039d316-1c4b-4281-b951-d872f2087c98 --- ppapi/example/example.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ppapi/example') diff --git a/ppapi/example/example.cc b/ppapi/example/example.cc index 6ef0640..3eaafcd 100644 --- a/ppapi/example/example.cc +++ b/ppapi/example/example.cc @@ -407,8 +407,8 @@ int gettimeofday(struct timeval *tv, struct timezone*) { for (size_t i = 0; i < props.size(); ++i) Log(PP_LOGLEVEL_LOG, props[i]); - pp::Var location = window.GetProperty("location"); - pp::Var href = location.GetProperty("href"); + pp::VarPrivate location = window.GetProperty("location"); + pp::VarPrivate href = location.GetProperty("href"); if (!fetcher_) { fetcher_ = new MyFetcher(); -- cgit v1.1