summaryrefslogtreecommitdiffstats
path: root/ppapi/cpp/instance_handle.cc
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/cpp/instance_handle.cc
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/cpp/instance_handle.cc')
-rw-r--r--ppapi/cpp/instance_handle.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/ppapi/cpp/instance_handle.cc b/ppapi/cpp/instance_handle.cc
new file mode 100644
index 0000000..8c3195a
--- /dev/null
+++ b/ppapi/cpp/instance_handle.cc
@@ -0,0 +1,15 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "ppapi/cpp/instance_handle.h"
+
+#include "ppapi/cpp/instance.h"
+
+namespace pp {
+
+InstanceHandle::InstanceHandle(Instance* instance)
+ : pp_instance_(instance->pp_instance()) {
+}
+
+} // namespace pp