OLD | NEW |
---|---|
(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 #ifndef PPAPI_CPP_DEV_DEVICE_REF_DEV_H_ | |
6 #define PPAPI_CPP_DEV_DEVICE_REF_DEV_H_ | |
7 | |
8 #include "ppapi/c/dev/ppb_device_ref_dev.h" | |
9 #include "ppapi/cpp/resource.h" | |
10 #include "ppapi/cpp/var.h" | |
11 | |
12 namespace pp { | |
13 | |
14 class DeviceRef_Dev : public Resource { | |
15 public: | |
16 DeviceRef_Dev(); | |
17 | |
18 explicit DeviceRef_Dev(PP_Resource resource); | |
19 | |
20 struct PassRef {}; | |
21 | |
22 DeviceRef_Dev(PassRef, PP_Resource resource); | |
23 | |
24 DeviceRef_Dev(const DeviceRef_Dev& other); | |
viettrungluu
2012/01/20 18:30:59
(No action required.)
It's not needed, strictly s
yzshen1
2012/01/20 19:24:49
I think it is okay to not have one right now, give
| |
25 | |
26 virtual ~DeviceRef_Dev(); | |
27 | |
28 PP_DeviceType_Dev GetType() const; | |
29 | |
30 Var GetName() const; | |
31 }; | |
32 | |
33 } // namespace pp | |
34 | |
35 #endif // PPAPI_CPP_DEV_DEVICE_REF_DEV_H_ | |
OLD | NEW |