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