| 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 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <string> | 10 #include <string> |
| (...skipping 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 virtual bool X509CertificateParseDER( | 308 virtual bool X509CertificateParseDER( |
| 309 const std::vector<char>& der, | 309 const std::vector<char>& der, |
| 310 ppapi::PPB_X509Certificate_Fields* fields) OVERRIDE; | 310 ppapi::PPB_X509Certificate_Fields* fields) OVERRIDE; |
| 311 virtual webkit::ppapi::FullscreenContainer* | 311 virtual webkit::ppapi::FullscreenContainer* |
| 312 CreateFullscreenContainer( | 312 CreateFullscreenContainer( |
| 313 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 313 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 314 virtual gfx::Size GetScreenSize() OVERRIDE; | 314 virtual gfx::Size GetScreenSize() OVERRIDE; |
| 315 virtual std::string GetDefaultEncoding() OVERRIDE; | 315 virtual std::string GetDefaultEncoding() OVERRIDE; |
| 316 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) | 316 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) |
| 317 OVERRIDE; | 317 OVERRIDE; |
| 318 virtual void DidStartLoading() OVERRIDE; | |
| 319 virtual void DidStopLoading() OVERRIDE; | |
| 320 virtual void SetContentRestriction(int restrictions) OVERRIDE; | |
| 321 virtual void SaveURLAs(const GURL& url) OVERRIDE; | |
| 322 virtual base::SharedMemory* CreateAnonymousSharedMemory(size_t size) | 318 virtual base::SharedMemory* CreateAnonymousSharedMemory(size_t size) |
| 323 OVERRIDE; | 319 OVERRIDE; |
| 324 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; | 320 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; |
| 325 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 321 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 326 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 322 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 327 virtual bool IsMouseLocked(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 323 virtual bool IsMouseLocked(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 328 virtual void DidChangeCursor(webkit::ppapi::PluginInstance* instance, | 324 virtual void DidChangeCursor(webkit::ppapi::PluginInstance* instance, |
| 329 const WebKit::WebCursorInfo& cursor) OVERRIDE; | 325 const WebKit::WebCursorInfo& cursor) OVERRIDE; |
| 330 virtual void DidReceiveMouseEvent( | 326 virtual void DidReceiveMouseEvent( |
| 331 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 327 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 device_enumeration_event_handler_; | 458 device_enumeration_event_handler_; |
| 463 | 459 |
| 464 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; | 460 scoped_refptr<ContextProviderCommandBuffer> offscreen_context3d_; |
| 465 | 461 |
| 466 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 462 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 467 }; | 463 }; |
| 468 | 464 |
| 469 } // namespace content | 465 } // namespace content |
| 470 | 466 |
| 471 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 467 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |