| 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 CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <map> | 9 #include <map> |
| 10 #include <set> | 10 #include <set> |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 virtual void PluginFocusChanged(webkit::ppapi::PluginInstance* instance, | 154 virtual void PluginFocusChanged(webkit::ppapi::PluginInstance* instance, |
| 155 bool focused) OVERRIDE; | 155 bool focused) OVERRIDE; |
| 156 virtual void PluginTextInputTypeChanged( | 156 virtual void PluginTextInputTypeChanged( |
| 157 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 157 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 158 virtual void PluginCaretPositionChanged( | 158 virtual void PluginCaretPositionChanged( |
| 159 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 159 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 160 virtual void PluginRequestedCancelComposition( | 160 virtual void PluginRequestedCancelComposition( |
| 161 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 161 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 162 virtual void PluginSelectionChanged( | 162 virtual void PluginSelectionChanged( |
| 163 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 163 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 164 virtual void SimulateImeSetComposition( |
| 165 const string16& text, |
| 166 const std::vector<WebKit::WebCompositionUnderline>& underlines, |
| 167 int selection_start, |
| 168 int selection_end) OVERRIDE; |
| 169 virtual void SimulateImeConfirmComposition(const string16& text) OVERRIDE; |
| 164 virtual void PluginCrashed(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 170 virtual void PluginCrashed(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 165 virtual void InstanceCreated( | 171 virtual void InstanceCreated( |
| 166 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 172 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 167 virtual void InstanceDeleted( | 173 virtual void InstanceDeleted( |
| 168 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 174 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 169 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE; | 175 virtual SkBitmap* GetSadPluginBitmap() OVERRIDE; |
| 170 virtual WebKit::WebPlugin* CreatePluginReplacement( | 176 virtual WebKit::WebPlugin* CreatePluginReplacement( |
| 171 const FilePath& file_path) OVERRIDE; | 177 const FilePath& file_path) OVERRIDE; |
| 172 virtual uint32_t GetAudioHardwareOutputSampleRate() OVERRIDE; | 178 virtual uint32_t GetAudioHardwareOutputSampleRate() OVERRIDE; |
| 173 virtual uint32_t GetAudioHardwareOutputBufferSize() OVERRIDE; | 179 virtual uint32_t GetAudioHardwareOutputBufferSize() OVERRIDE; |
| (...skipping 320 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 | 500 |
| 495 scoped_ptr<PepperDeviceEnumerationEventHandler> | 501 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 496 device_enumeration_event_handler_; | 502 device_enumeration_event_handler_; |
| 497 | 503 |
| 498 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 504 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 499 }; | 505 }; |
| 500 | 506 |
| 501 } // namespace content | 507 } // namespace content |
| 502 | 508 |
| 503 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 509 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |