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_PROXY_BROKER_RESOURCE_H_ 6 #define PPAPI_PROXY_BROKER_RESOURCE_H_ 7 8 #include "ppapi/proxy/connection.h" 9 #include "ppapi/proxy/plugin_resource.h" 10 #include "ppapi/thunk/ppb_broker_api.h" 11 12 namespace ppapi { 13 namespace proxy { 14 15 class BrokerResource 16 : public PluginResource, 17 public thunk::PPB_Broker_Instance_API { 18 public: 19 BrokerResource(Connection connection, PP_Instance instance); 20 virtual ~BrokerResource(); 21 22 // Resource override. 23 virtual thunk::PPB_Broker_Instance_API* AsPPB_Broker_Instance_API() OVERRIDE; 24 25 // thunk::PPB_Broker_Instance_API implementation. 26 virtual PP_Bool IsAllowed() OVERRIDE; 27 28 private: 29 DISALLOW_COPY_AND_ASSIGN(BrokerResource); 30 }; 31 32 } // namespace proxy 33 } // namespace ppapi 34 35 #endif // PPAPI_PROXY_BROKER_RESOURCE_H_ 36