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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 const WebKit::WebCursorInfo& cursor) OVERRIDE; | 384 const WebKit::WebCursorInfo& cursor) OVERRIDE; |
385 virtual void DidReceiveMouseEvent( | 385 virtual void DidReceiveMouseEvent( |
386 webkit::ppapi::PluginInstance* instance) OVERRIDE; | 386 webkit::ppapi::PluginInstance* instance) OVERRIDE; |
387 virtual bool IsInFullscreenMode() OVERRIDE; | 387 virtual bool IsInFullscreenMode() OVERRIDE; |
388 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE; | 388 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE; |
389 virtual bool IsPageVisible() const OVERRIDE; | 389 virtual bool IsPageVisible() const OVERRIDE; |
390 virtual int EnumerateDevices( | 390 virtual int EnumerateDevices( |
391 PP_DeviceType_Dev type, | 391 PP_DeviceType_Dev type, |
392 const EnumerateDevicesCallback& callback) OVERRIDE; | 392 const EnumerateDevicesCallback& callback) OVERRIDE; |
393 virtual void StopEnumerateDevices(int request_id) OVERRIDE; | 393 virtual void StopEnumerateDevices(int request_id) OVERRIDE; |
394 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const OVERRIDE; | |
395 virtual std::string GetDeviceID() OVERRIDE; | 394 virtual std::string GetDeviceID() OVERRIDE; |
396 virtual PP_FlashLSORestrictions GetLocalDataRestrictions( | 395 virtual PP_FlashLSORestrictions GetLocalDataRestrictions( |
397 const GURL& document_url, | 396 const GURL& document_url, |
398 const GURL& plugin_url) OVERRIDE; | 397 const GURL& plugin_url) OVERRIDE; |
399 | 398 |
400 // RenderViewObserver implementation. | 399 // RenderViewObserver implementation. |
401 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; | 400 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; |
402 virtual void OnDestruct() OVERRIDE; | 401 virtual void OnDestruct() OVERRIDE; |
403 | 402 |
404 void OnTCPSocketConnectACK(uint32 plugin_dispatcher_id, | 403 void OnTCPSocketConnectACK(uint32 plugin_dispatcher_id, |
(...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
546 | 545 |
547 scoped_ptr<PepperDeviceEnumerationEventHandler> | 546 scoped_ptr<PepperDeviceEnumerationEventHandler> |
548 device_enumeration_event_handler_; | 547 device_enumeration_event_handler_; |
549 | 548 |
550 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); | 549 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); |
551 }; | 550 }; |
552 | 551 |
553 } // namespace content | 552 } // namespace content |
554 | 553 |
555 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ | 554 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ |
OLD | NEW |