| 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 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 341 virtual std::string GetDefaultEncoding() OVERRIDE; | 341 virtual std::string GetDefaultEncoding() OVERRIDE; |
| 342 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) | 342 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) |
| 343 OVERRIDE; | 343 OVERRIDE; |
| 344 virtual std::string ResolveProxy(const GURL& url) OVERRIDE; | 344 virtual std::string ResolveProxy(const GURL& url) OVERRIDE; |
| 345 virtual void DidStartLoading() OVERRIDE; | 345 virtual void DidStartLoading() OVERRIDE; |
| 346 virtual void DidStopLoading() OVERRIDE; | 346 virtual void DidStopLoading() OVERRIDE; |
| 347 virtual void SetContentRestriction(int restrictions) OVERRIDE; | 347 virtual void SetContentRestriction(int restrictions) OVERRIDE; |
| 348 virtual void SaveURLAs(const GURL& url) OVERRIDE; | 348 virtual void SaveURLAs(const GURL& url) OVERRIDE; |
| 349 virtual webkit_glue::P2PTransport* CreateP2PTransport() OVERRIDE; | 349 virtual webkit_glue::P2PTransport* CreateP2PTransport() OVERRIDE; |
| 350 virtual double GetLocalTimeZoneOffset(base::Time t) OVERRIDE; | 350 virtual double GetLocalTimeZoneOffset(base::Time t) OVERRIDE; |
| 351 virtual std::string GetFlashCommandLineArgs() OVERRIDE; | |
| 352 virtual base::SharedMemory* CreateAnonymousSharedMemory(uint32_t size) | 351 virtual base::SharedMemory* CreateAnonymousSharedMemory(uint32_t size) |
| 353 OVERRIDE; | 352 OVERRIDE; |
| 354 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; | 353 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; |
| 355 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 354 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 356 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 355 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 357 virtual bool IsMouseLocked(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 356 virtual bool IsMouseLocked(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| 358 virtual void DidChangeCursor(webkit::ppapi::PluginInstance* instance, | 357 virtual void DidChangeCursor(webkit::ppapi::PluginInstance* instance, |
| 359 const WebKit::WebCursorInfo& cursor) OVERRIDE; | 358 const WebKit::WebCursorInfo& cursor) OVERRIDE; |
| 360 virtual void DidReceiveMouseEvent( | 359 virtual void DidReceiveMouseEvent( |
| 361 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 360 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 493 | 492 |
| 494 scoped_ptr<PepperDeviceEnumerationEventHandler> | 493 scoped_ptr<PepperDeviceEnumerationEventHandler> |
| 495 device_enumeration_event_handler_; | 494 device_enumeration_event_handler_; |
| 496 | 495 |
| 497 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 496 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
| 498 }; | 497 }; |
| 499 | 498 |
| 500 } // namespace content | 499 } // namespace content |
| 501 | 500 |
| 502 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 501 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
| OLD | NEW |