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 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
353 virtual bool X509CertificateParseDER( | 353 virtual bool X509CertificateParseDER( |
354 const std::vector<char>& der, | 354 const std::vector<char>& der, |
355 ppapi::PPB_X509Certificate_Fields* fields) OVERRIDE; | 355 ppapi::PPB_X509Certificate_Fields* fields) OVERRIDE; |
356 virtual webkit::ppapi::FullscreenContainer* | 356 virtual webkit::ppapi::FullscreenContainer* |
357 CreateFullscreenContainer( | 357 CreateFullscreenContainer( |
358 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 358 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
359 virtual gfx::Size GetScreenSize() OVERRIDE; | 359 virtual gfx::Size GetScreenSize() OVERRIDE; |
360 virtual std::string GetDefaultEncoding() OVERRIDE; | 360 virtual std::string GetDefaultEncoding() OVERRIDE; |
361 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) | 361 virtual void ZoomLimitsChanged(double minimum_factor, double maximum_factor) |
362 OVERRIDE; | 362 OVERRIDE; |
363 virtual std::string ResolveProxy(const GURL& url) OVERRIDE; | |
364 virtual void DidStartLoading() OVERRIDE; | 363 virtual void DidStartLoading() OVERRIDE; |
365 virtual void DidStopLoading() OVERRIDE; | 364 virtual void DidStopLoading() OVERRIDE; |
366 virtual void SetContentRestriction(int restrictions) OVERRIDE; | 365 virtual void SetContentRestriction(int restrictions) OVERRIDE; |
367 virtual void SaveURLAs(const GURL& url) OVERRIDE; | 366 virtual void SaveURLAs(const GURL& url) OVERRIDE; |
368 virtual double GetLocalTimeZoneOffset(base::Time t) OVERRIDE; | 367 virtual double GetLocalTimeZoneOffset(base::Time t) OVERRIDE; |
369 virtual base::SharedMemory* CreateAnonymousSharedMemory(uint32_t size) | 368 virtual base::SharedMemory* CreateAnonymousSharedMemory(uint32_t size) |
370 OVERRIDE; | 369 OVERRIDE; |
371 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; | 370 virtual ::ppapi::Preferences GetPreferences() OVERRIDE; |
372 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 371 virtual bool LockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
373 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; | 372 virtual void UnlockMouse(webkit::ppapi::PluginInstance* instance) OVERRIDE; |
(...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
524 | 523 |
525 scoped_ptr<PepperDeviceEnumerationEventHandler> | 524 scoped_ptr<PepperDeviceEnumerationEventHandler> |
526 device_enumeration_event_handler_; | 525 device_enumeration_event_handler_; |
527 | 526 |
528 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 527 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
529 }; | 528 }; |
530 | 529 |
531 } // namespace content | 530 } // namespace content |
532 | 531 |
533 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 532 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |