| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 WEBKIT_PLUGINS_PPAPI_PPB_BROKER_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_BROKER_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_BROKER_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_BROKER_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" |
| 9 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 10 #include "ppapi/c/pp_completion_callback.h" | 11 #include "ppapi/c/pp_completion_callback.h" |
| 11 #include "ppapi/c/trusted/ppb_broker_trusted.h" | 12 #include "ppapi/c/trusted/ppb_broker_trusted.h" |
| 12 #include "ppapi/shared_impl/resource.h" | 13 #include "ppapi/shared_impl/resource.h" |
| 13 #include "ppapi/thunk/ppb_broker_api.h" | 14 #include "ppapi/thunk/ppb_broker_api.h" |
| 14 #include "webkit/plugins/ppapi/plugin_delegate.h" | 15 #include "webkit/plugins/ppapi/plugin_delegate.h" |
| 15 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" | 16 #include "webkit/plugins/ppapi/ppapi_plugin_instance.h" |
| 16 #include "webkit/plugins/ppapi/callbacks.h" | 17 #include "webkit/plugins/ppapi/callbacks.h" |
| 18 #include "webkit/plugins/webkit_plugins_export.h" |
| 17 | 19 |
| 18 namespace webkit { | 20 namespace webkit { |
| 19 namespace ppapi { | 21 namespace ppapi { |
| 20 | 22 |
| 21 class PPB_Broker_Impl : public ::ppapi::Resource, | 23 class WEBKIT_PLUGINS_EXPORT PPB_Broker_Impl |
| 22 public ::ppapi::thunk::PPB_Broker_API, | 24 : public ::ppapi::Resource, |
| 23 public base::SupportsWeakPtr<PPB_Broker_Impl> { | 25 NON_EXPORTED_BASE(public ::ppapi::thunk::PPB_Broker_API), |
| 26 public base::SupportsWeakPtr<PPB_Broker_Impl> { |
| 24 public: | 27 public: |
| 25 explicit PPB_Broker_Impl(PP_Instance instance); | 28 explicit PPB_Broker_Impl(PP_Instance instance); |
| 26 virtual ~PPB_Broker_Impl(); | 29 virtual ~PPB_Broker_Impl(); |
| 27 | 30 |
| 28 // Resource override. | 31 // Resource override. |
| 29 virtual ::ppapi::thunk::PPB_Broker_API* AsPPB_Broker_API() OVERRIDE; | 32 virtual ::ppapi::thunk::PPB_Broker_API* AsPPB_Broker_API() OVERRIDE; |
| 30 | 33 |
| 31 // PPB_BrokerTrusted implementation. | 34 // PPB_BrokerTrusted implementation. |
| 32 virtual int32_t Connect(PP_CompletionCallback connect_callback) OVERRIDE; | 35 virtual int32_t Connect(PP_CompletionCallback connect_callback) OVERRIDE; |
| 33 virtual int32_t GetHandle(int32_t* handle) OVERRIDE; | 36 virtual int32_t GetHandle(int32_t* handle) OVERRIDE; |
| (...skipping 12 matching lines...) Expand all Loading... |
| 46 // Never owned by this object. | 49 // Never owned by this object. |
| 47 int32_t pipe_handle_; | 50 int32_t pipe_handle_; |
| 48 | 51 |
| 49 DISALLOW_COPY_AND_ASSIGN(PPB_Broker_Impl); | 52 DISALLOW_COPY_AND_ASSIGN(PPB_Broker_Impl); |
| 50 }; | 53 }; |
| 51 | 54 |
| 52 } // namespace ppapi | 55 } // namespace ppapi |
| 53 } // namespace webkit | 56 } // namespace webkit |
| 54 | 57 |
| 55 #endif // WEBKIT_PLUGINS_PPAPI_PPB_BROKER_IMPL_H_ | 58 #endif // WEBKIT_PLUGINS_PPAPI_PPB_BROKER_IMPL_H_ |
| OLD | NEW |