diff options
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(); |