| 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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 354 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 354 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 355 virtual gfx::Size GetScreenSize() OVERRIDE; | 355 virtual gfx::Size GetScreenSize() OVERRIDE; |
| 356 virtual std::string GetDefaultEncoding() OVERRIDE; | 356 virtual std::string GetDefaultEncoding() OVERRIDE; |
| 357 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) | 357 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) |
| 358 OVERRIDE; | 358 OVERRIDE; |
| 359 virtual std::string ResolveProxy(const GURL& url) OVERRIDE; | 359 virtual std::string ResolveProxy(const GURL& url) OVERRIDE; |
| 360 virtual void DidStartLoading() OVERRIDE; | 360 virtual void DidStartLoading() OVERRIDE; |
| 361 virtual void DidStopLoading() OVERRIDE; | 361 virtual void DidStopLoading() OVERRIDE; |
| 362 virtual void SetContentRestriction(int restrictions) OVERRIDE; | 362 virtual void SetContentRestriction(int restrictions) OVERRIDE; |
| 363 virtual void SaveURLAs(const GURL& url) OVERRIDE; | 363 virtual void SaveURLAs(const GURL& url) OVERRIDE; |
| 364 virtual webkit_glue::P2PTransport* CreateP2PTransport() OVERRIDE; | |
| 365 virtual double GetLocalTimeZoneOffset(base::Time t) OVERRIDE; | 364 virtual double GetLocalTimeZoneOffset(base::Time t) OVERRIDE; |
| 366 virtual base::SharedMemory* CreateAnonymousSharedMemory(uint32_t size) | 365 virtual base::SharedMemory* CreateAnonymousSharedMemory(uint32_t size) |
| 367 OVERRIDE; | 366 OVERRIDE; |
| 368 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; | 367 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; |
| 369 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 368 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 370 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 369 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 371 virtual bool IsMouseLocked(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 370 virtual bool IsMouseLocked(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 372 virtual void DidChangeCursor(webkit::ppapi::PluginInstance* instance, | 371 virtual void DidChangeCursor(webkit::ppapi::PluginInstance* instance, |
| 373 const WebKit::WebCursorInfo& cursor) OVERRIDE; | 372 const WebKit::WebCursorInfo& cursor) OVERRIDE; |
| 374 virtual void DidReceiveMouseEvent( | 373 virtual void DidReceiveMouseEvent( |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 | 514 |
| 516 scoped_ptr<PepperDeviceEnumerationEventHandler> | 515 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 517 device_enumeration_event_handler_; | 516 device_enumeration_event_handler_; |
| 518 | 517 |
| 519 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 518 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 520 }; | 519 }; |
| 521 | 520 |
| 522 } // namespace content | 521 } // namespace content |
| 523 | 522 |
| 524 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 523 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |