| 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_PPB_FLASH_DEVICE_ID_PROXY_H_ | 5 #ifndef PPAPI_PROXY_PPB_FLASH_DEVICE_ID_PROXY_H_ |
| 6 #define PPAPI_PROXY_PPB_FLASH_DEVICE_ID_PROXY_H_ | 6 #define PPAPI_PROXY_PPB_FLASH_DEVICE_ID_PROXY_H_ |
| 7 | 7 |
| 8 #include <string> |
| 9 |
| 8 #include "ppapi/c/pp_instance.h" | 10 #include "ppapi/c/pp_instance.h" |
| 9 #include "ppapi/proxy/interface_proxy.h" | 11 #include "ppapi/proxy/interface_proxy.h" |
| 10 | 12 |
| 11 namespace ppapi { | 13 namespace ppapi { |
| 12 namespace proxy { | 14 namespace proxy { |
| 13 | 15 |
| 14 class PPB_Flash_DeviceID_Proxy : public InterfaceProxy { | 16 class PPB_Flash_DeviceID_Proxy : public InterfaceProxy { |
| 15 public: | 17 public: |
| 16 PPB_Flash_DeviceID_Proxy(Dispatcher* dispatcher); | 18 PPB_Flash_DeviceID_Proxy(Dispatcher* dispatcher); |
| 17 virtual ~PPB_Flash_DeviceID_Proxy(); | 19 virtual ~PPB_Flash_DeviceID_Proxy(); |
| (...skipping 12 matching lines...) Expand all Loading... |
| 30 const std::string& id); | 32 const std::string& id); |
| 31 | 33 |
| 32 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_DeviceID_Proxy); | 34 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_DeviceID_Proxy); |
| 33 }; | 35 }; |
| 34 | 36 |
| 35 } // namespace proxy | 37 } // namespace proxy |
| 36 } // namespace ppapi | 38 } // namespace ppapi |
| 37 | 39 |
| 38 #endif // PPAPI_PROXY_PPB_FLASH_DEVICE_ID_PROXY_H_ | 40 #endif // PPAPI_PROXY_PPB_FLASH_DEVICE_ID_PROXY_H_ |
| 39 | 41 |
| OLD | NEW |