Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(193)

Side by Side Diff: content/renderer/pepper/pepper_plugin_delegate_impl.h

Issue 10831045: Add PP_FlashLSORestrictions to the list of settings supported by the Flash_GetSetting Pepper API. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 361 matching lines...) Expand 10 before | Expand all | Expand 10 after
372 virtual void DidReceiveMouseEvent( 372 virtual void DidReceiveMouseEvent(
373 webkit::ppapi::PluginInstance* instance) OVERRIDE; 373 webkit::ppapi::PluginInstance* instance) OVERRIDE;
374 virtual bool IsInFullscreenMode() OVERRIDE; 374 virtual bool IsInFullscreenMode() OVERRIDE;
375 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE; 375 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE;
376 virtual bool IsPageVisible() const OVERRIDE; 376 virtual bool IsPageVisible() const OVERRIDE;
377 virtual int EnumerateDevices( 377 virtual int EnumerateDevices(
378 PP_DeviceType_Dev type, 378 PP_DeviceType_Dev type,
379 const EnumerateDevicesCallback& callback) OVERRIDE; 379 const EnumerateDevicesCallback& callback) OVERRIDE;
380 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const OVERRIDE; 380 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const OVERRIDE;
381 virtual std::string GetDeviceID() OVERRIDE; 381 virtual std::string GetDeviceID() OVERRIDE;
382 virtual void GetLocalDataRestrictions(const GURL& document_url,
383 const GURL& plugin_url,
384 bool* block_access,
385 bool* in_memory) OVERRIDE;
382 386
383 // RenderViewObserver implementation. 387 // RenderViewObserver implementation.
384 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 388 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
385 virtual void OnDestruct() OVERRIDE; 389 virtual void OnDestruct() OVERRIDE;
386 390
387 void OnTCPSocketConnectACK(uint32 plugin_dispatcher_id, 391 void OnTCPSocketConnectACK(uint32 plugin_dispatcher_id,
388 uint32 socket_id, 392 uint32 socket_id,
389 bool succeeded, 393 bool succeeded,
390 const PP_NetAddress_Private& local_addr, 394 const PP_NetAddress_Private& local_addr,
391 const PP_NetAddress_Private& remote_addr); 395 const PP_NetAddress_Private& remote_addr);
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
509 513
510 scoped_ptr<PepperDeviceEnumerationEventHandler> 514 scoped_ptr<PepperDeviceEnumerationEventHandler>
511 device_enumeration_event_handler_; 515 device_enumeration_event_handler_;
512 516
513 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 517 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
514 }; 518 };
515 519
516 } // namespace content 520 } // namespace content
517 521
518 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 522 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698