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

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

Issue 9557006: Implement PPB_NetworkMonitor_Private Pepper interface. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 8 years, 9 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 #pragma once 7 #pragma once
8 8
9 #include <map> 9 #include <map>
10 #include <set> 10 #include <set>
11 #include <string> 11 #include <string>
12 12
13 #include "base/basictypes.h" 13 #include "base/basictypes.h"
14 #include "base/id_map.h" 14 #include "base/id_map.h"
15 #include "base/memory/ref_counted.h" 15 #include "base/memory/ref_counted.h"
16 #include "base/memory/scoped_ptr.h" 16 #include "base/memory/scoped_ptr.h"
17 #include "base/memory/weak_ptr.h" 17 #include "base/memory/weak_ptr.h"
18 #include "base/observer_list.h"
18 #include "content/common/content_export.h" 19 #include "content/common/content_export.h"
19 #include "content/public/renderer/render_view_observer.h" 20 #include "content/public/renderer/render_view_observer.h"
20 #include "content/renderer/mouse_lock_dispatcher.h" 21 #include "content/renderer/mouse_lock_dispatcher.h"
21 #include "content/renderer/pepper/pepper_parent_context_provider.h" 22 #include "content/renderer/pepper/pepper_parent_context_provider.h"
22 #include "ppapi/shared_impl/private/tcp_socket_private_impl.h" 23 #include "ppapi/shared_impl/private/tcp_socket_private_impl.h"
23 #include "ppapi/shared_impl/private/udp_socket_private_impl.h" 24 #include "ppapi/shared_impl/private/udp_socket_private_impl.h"
24 #include "ui/base/ime/text_input_type.h" 25 #include "ui/base/ime/text_input_type.h"
25 #include "webkit/plugins/ppapi/plugin_delegate.h" 26 #include "webkit/plugins/ppapi/plugin_delegate.h"
26 #include "webkit/plugins/ppapi/ppb_flash_menu_impl.h" 27 #include "webkit/plugins/ppapi/ppb_flash_menu_impl.h"
27 28
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 virtual void UDPSocketClose(uint32 socket_id) OVERRIDE; 293 virtual void UDPSocketClose(uint32 socket_id) OVERRIDE;
293 virtual void TCPServerSocketListen( 294 virtual void TCPServerSocketListen(
294 webkit::ppapi::PPB_TCPServerSocket_Private_Impl* socket, 295 webkit::ppapi::PPB_TCPServerSocket_Private_Impl* socket,
295 uint32 temp_socket_id, 296 uint32 temp_socket_id,
296 const PP_NetAddress_Private& addr, 297 const PP_NetAddress_Private& addr,
297 int32_t backlog) OVERRIDE; 298 int32_t backlog) OVERRIDE;
298 virtual void TCPServerSocketAccept(uint32 real_socket_id) OVERRIDE; 299 virtual void TCPServerSocketAccept(uint32 real_socket_id) OVERRIDE;
299 virtual void TCPServerSocketStopListening(uint32 real_socket_id, 300 virtual void TCPServerSocketStopListening(uint32 real_socket_id,
300 uint32 temp_socket_id) OVERRIDE; 301 uint32 temp_socket_id) OVERRIDE;
301 302
303 virtual bool AddNetworkListObserver(
304 webkit_glue::NetworkListObserver* observer) OVERRIDE;
305 virtual void RemoveNetworkListObserver(
306 webkit_glue::NetworkListObserver* observer) OVERRIDE;
307
302 virtual int32_t ShowContextMenu( 308 virtual int32_t ShowContextMenu(
303 webkit::ppapi::PluginInstance* instance, 309 webkit::ppapi::PluginInstance* instance,
304 webkit::ppapi::PPB_Flash_Menu_Impl* menu, 310 webkit::ppapi::PPB_Flash_Menu_Impl* menu,
305 const gfx::Point& position) OVERRIDE; 311 const gfx::Point& position) OVERRIDE;
306 void OnContextMenuClosed( 312 void OnContextMenuClosed(
307 const content::CustomContextMenuContext& custom_context); 313 const content::CustomContextMenuContext& custom_context);
308 void OnCustomContextMenuAction( 314 void OnCustomContextMenuAction(
309 const content::CustomContextMenuContext& custom_context, 315 const content::CustomContextMenuContext& custom_context,
310 unsigned action); 316 unsigned action);
311 void CompleteShowContextMenu(int request_id, 317 void CompleteShowContextMenu(int request_id,
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 webkit::ppapi::PluginInstance* last_mouse_event_target_; 471 webkit::ppapi::PluginInstance* last_mouse_event_target_;
466 472
467 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; 473 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
468 474
469 scoped_ptr<DeviceEnumerationEventHandler> device_enumeration_event_handler_; 475 scoped_ptr<DeviceEnumerationEventHandler> device_enumeration_event_handler_;
470 476
471 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 477 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
472 }; 478 };
473 479
474 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 480 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698