OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef PPAPI_PROXY_DEVICE_ENUMERATION_RESOURCE_HELPER_H_ | 5 #ifndef PPAPI_PROXY_DEVICE_ENUMERATION_RESOURCE_HELPER_H_ |
6 #define PPAPI_PROXY_DEVICE_ENUMERATION_RESOURCE_HELPER_H_ | 6 #define PPAPI_PROXY_DEVICE_ENUMERATION_RESOURCE_HELPER_H_ |
7 | 7 |
| 8 #include <stdint.h> |
| 9 |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
10 #include "base/basictypes.h" | 12 #include "base/macros.h" |
11 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
12 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
13 #include "ppapi/c/dev/ppb_device_ref_dev.h" | 15 #include "ppapi/c/dev/ppb_device_ref_dev.h" |
14 #include "ppapi/proxy/ppapi_proxy_export.h" | 16 #include "ppapi/proxy/ppapi_proxy_export.h" |
15 #include "ppapi/shared_impl/thread_aware_callback.h" | 17 #include "ppapi/shared_impl/thread_aware_callback.h" |
16 | 18 |
17 namespace IPC { | 19 namespace IPC { |
18 class Message; | 20 class Message; |
19 } | 21 } |
20 | 22 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 monitor_callback_; | 74 monitor_callback_; |
73 void* monitor_user_data_; | 75 void* monitor_user_data_; |
74 | 76 |
75 DISALLOW_COPY_AND_ASSIGN(DeviceEnumerationResourceHelper); | 77 DISALLOW_COPY_AND_ASSIGN(DeviceEnumerationResourceHelper); |
76 }; | 78 }; |
77 | 79 |
78 } // namespace proxy | 80 } // namespace proxy |
79 } // namespace ppapi | 81 } // namespace ppapi |
80 | 82 |
81 #endif // PPAPI_PROXY_DEVICE_ENUMERATION_RESOURCE_HELPER_H_ | 83 #endif // PPAPI_PROXY_DEVICE_ENUMERATION_RESOURCE_HELPER_H_ |
OLD | NEW |