summaryrefslogtreecommitdiffstats
path: root/ppapi/example/example.cc
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/example/example.cc')
-rw-r--r--ppapi/example/example.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/example/example.cc b/ppapi/example/example.cc
index 8319d49..17ac037 100644
--- a/ppapi/example/example.cc
+++ b/ppapi/example/example.cc
@@ -98,14 +98,14 @@ class MyFetcher {
callback_factory_.Initialize(this);
}
- void Start(const pp::InstancePrivate& instance,
+ void Start(pp::Instance* instance,
const pp::Var& url,
MyFetcherClient* client) {
pp::URLRequestInfo request;
request.SetURL(url);
request.SetMethod("GET");
- loader_ = pp::URLLoader(instance);
+ loader_ = pp::URLLoader(pp::InstanceHandle(instance));
client_ = client;
pp::CompletionCallback callback =
@@ -415,7 +415,7 @@ int gettimeofday(struct timeval *tv, struct timezone*) {
if (!fetcher_) {
fetcher_ = new MyFetcher();
- fetcher_->Start(*this, href, this);
+ fetcher_->Start(this, href, this);
}
}