diff options
author | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 01:58:52 +0000 |
---|---|---|
committer | dmichael@chromium.org <dmichael@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-13 01:58:52 +0000 |
commit | c637ba992deae66085bdb2ae021a38e7fc30c0ef (patch) | |
tree | 863339a72a01137a7327f47077b97f5809dcc00f /ppapi/example | |
parent | 75086963696a4bda5dac105815e872db3f9b20d6 (diff) | |
download | chromium_src-c637ba992deae66085bdb2ae021a38e7fc30c0ef.zip chromium_src-c637ba992deae66085bdb2ae021a38e7fc30c0ef.tar.gz chromium_src-c637ba992deae66085bdb2ae021a38e7fc30c0ef.tar.bz2 |
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
Diffstat (limited to 'ppapi/example')
-rw-r--r-- | ppapi/example/example.cc | 4 |
1 files changed, 2 insertions, 2 deletions
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(); |