| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_UMA_PRIVATE_RESOURCE_H_ | 5 #ifndef PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_ |
| 6 #define PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_ | 6 #define PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 10 #include "base/macros.h" |
| 8 #include "ppapi/proxy/connection.h" | 11 #include "ppapi/proxy/connection.h" |
| 9 #include "ppapi/proxy/plugin_resource.h" | 12 #include "ppapi/proxy/plugin_resource.h" |
| 10 #include "ppapi/proxy/ppapi_proxy_export.h" | 13 #include "ppapi/proxy/ppapi_proxy_export.h" |
| 11 #include "ppapi/thunk/ppb_uma_singleton_api.h" | 14 #include "ppapi/thunk/ppb_uma_singleton_api.h" |
| 12 | 15 |
| 13 namespace ppapi { | 16 namespace ppapi { |
| 14 | 17 |
| 15 namespace proxy { | 18 namespace proxy { |
| 16 | 19 |
| 17 class PPAPI_PROXY_EXPORT UMAPrivateResource | 20 class PPAPI_PROXY_EXPORT UMAPrivateResource |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 const ResourceMessageReplyParams& params); | 56 const ResourceMessageReplyParams& params); |
| 54 scoped_refptr<TrackedCallback> pending_callback_; | 57 scoped_refptr<TrackedCallback> pending_callback_; |
| 55 | 58 |
| 56 DISALLOW_COPY_AND_ASSIGN(UMAPrivateResource); | 59 DISALLOW_COPY_AND_ASSIGN(UMAPrivateResource); |
| 57 }; | 60 }; |
| 58 | 61 |
| 59 } // namespace proxy | 62 } // namespace proxy |
| 60 } // namespace ppapi | 63 } // namespace ppapi |
| 61 | 64 |
| 62 #endif // PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_ | 65 #endif // PPAPI_PROXY_UMA_PRIVATE_RESOURCE_H_ |
| OLD | NEW |