summaryrefslogtreecommitdiffstats
path: root/ppapi/example
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-27 20:23:19 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-02-27 20:23:19 +0000
commit09af0f7661d6a5971804c9a8ec47bbd038a5de78 (patch)
treef2c56e46b629df59a3a1781ac54a7d43d170ea31 /ppapi/example
parent7e26ac973ede2fd0576d40086a437a3177668ea1 (diff)
downloadchromium_src-09af0f7661d6a5971804c9a8ec47bbd038a5de78.zip
chromium_src-09af0f7661d6a5971804c9a8ec47bbd038a5de78.tar.gz
chromium_src-09af0f7661d6a5971804c9a8ec47bbd038a5de78.tar.bz2
Convert resources to take an instance key instead of an Instance*.
Review URL: https://chromiumcodereview.appspot.com/9381010 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@123795 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/example')
-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);
}
}