| 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_FLASH_CLIPBOARD_IMPL_H_ | 5 #ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_CLIPBOARD_IMPL_H_ |
| 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_CLIPBOARD_IMPL_H_ | 6 #define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_CLIPBOARD_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "ppapi/shared_impl/function_group_base.h" | 10 #include "ppapi/shared_impl/function_group_base.h" |
| 11 #include "ppapi/thunk/ppb_flash_clipboard_api.h" | 11 #include "ppapi/thunk/ppb_flash_clipboard_api.h" |
| 12 | 12 |
| 13 struct PPB_Flash_Clipboard; | |
| 14 | |
| 15 namespace webkit { | 13 namespace webkit { |
| 16 namespace ppapi { | 14 namespace ppapi { |
| 17 | 15 |
| 18 class PluginInstance; | 16 class PluginInstance; |
| 19 | 17 |
| 20 class PPB_Flash_Clipboard_Impl | 18 class PPB_Flash_Clipboard_Impl |
| 21 : public ::ppapi::FunctionGroupBase, | 19 : public ::ppapi::FunctionGroupBase, |
| 22 public ::ppapi::thunk::PPB_Flash_Clipboard_FunctionAPI { | 20 public ::ppapi::thunk::PPB_Flash_Clipboard_FunctionAPI { |
| 23 public: | 21 public: |
| 24 PPB_Flash_Clipboard_Impl(PluginInstance* instance); | 22 PPB_Flash_Clipboard_Impl(PluginInstance* instance); |
| (...skipping 16 matching lines...) Expand all Loading... |
| 41 private: | 39 private: |
| 42 PluginInstance* instance_; | 40 PluginInstance* instance_; |
| 43 | 41 |
| 44 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Clipboard_Impl); | 42 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_Clipboard_Impl); |
| 45 }; | 43 }; |
| 46 | 44 |
| 47 } // namespace ppapi | 45 } // namespace ppapi |
| 48 } // namespace webkit | 46 } // namespace webkit |
| 49 | 47 |
| 50 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_CLIPBOARD_IMPL_H_ | 48 #endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_CLIPBOARD_IMPL_H_ |
| OLD | NEW |