Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(810)

Side by Side Diff: ppapi/cpp/dev/device_ref_dev.cc

Issue 9192019: Implement PPB_DeviceRef_Dev. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "ppapi/cpp/dev/device_ref_dev.h"
6
7 #include "ppapi/cpp/module_impl.h"
8
9 namespace pp {
10
11 namespace {
12
13 template <> const char* interface_name<PPB_DeviceRef_Dev>() {
14 return PPB_DEVICEREF_DEV_INTERFACE;
15 }
16
17 } // namespace
18
19 DeviceRef_Dev::DeviceRef_Dev() {
20 }
21
22 DeviceRef_Dev::DeviceRef_Dev(PP_Resource resource) : Resource(resource) {
23 }
24
25 DeviceRef_Dev::DeviceRef_Dev(PassRef, PP_Resource resource) {
26 PassRefFromConstructor(resource);
27 }
28
29 DeviceRef_Dev::DeviceRef_Dev(const DeviceRef_Dev& other) : Resource(other) {
30 }
31
32 DeviceRef_Dev::~DeviceRef_Dev() {
33 }
34
35 PP_DeviceType_Dev DeviceRef_Dev::GetType() const {
36 if (!has_interface<PPB_DeviceRef_Dev>())
37 return PP_DEVICETYPE_INVALID;
38 return get_interface<PPB_DeviceRef_Dev>()->GetType(pp_resource());
39 }
40
41 Var DeviceRef_Dev::GetName() const {
42 if (!has_interface<PPB_DeviceRef_Dev>())
43 return Var();
44 return Var(Var::PassRef(),
45 get_interface<PPB_DeviceRef_Dev>()->GetName(pp_resource()));
46 }
47
48 } // namespace pp
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698