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

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

Issue 9683003: Aura: Show dialog box asking user's permisssion for screen sharing for gtalk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: patch 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>
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
343 const WebKit::WebCursorInfo& cursor) OVERRIDE; 343 const WebKit::WebCursorInfo& cursor) OVERRIDE;
344 virtual void DidReceiveMouseEvent( 344 virtual void DidReceiveMouseEvent(
345 webkit::ppapi::PluginInstance* instance) OVERRIDE; 345 webkit::ppapi::PluginInstance* instance) OVERRIDE;
346 virtual bool IsInFullscreenMode() OVERRIDE; 346 virtual bool IsInFullscreenMode() OVERRIDE;
347 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE; 347 virtual void SampleGamepads(WebKit::WebGamepads* data) OVERRIDE;
348 virtual bool IsPageVisible() const OVERRIDE; 348 virtual bool IsPageVisible() const OVERRIDE;
349 virtual int EnumerateDevices( 349 virtual int EnumerateDevices(
350 PP_DeviceType_Dev type, 350 PP_DeviceType_Dev type,
351 const EnumerateDevicesCallback& callback) OVERRIDE; 351 const EnumerateDevicesCallback& callback) OVERRIDE;
352 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const OVERRIDE; 352 virtual webkit_glue::ClipboardClient* CreateClipboardClient() const OVERRIDE;
353 virtual int GetRendererId() OVERRIDE;
353 354
354 // RenderViewObserver implementation. 355 // RenderViewObserver implementation.
355 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; 356 virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
356 virtual void OnDestruct() OVERRIDE; 357 virtual void OnDestruct() OVERRIDE;
357 358
358 void OnTCPSocketConnectACK(uint32 plugin_dispatcher_id, 359 void OnTCPSocketConnectACK(uint32 plugin_dispatcher_id,
359 uint32 socket_id, 360 uint32 socket_id,
360 bool succeeded, 361 bool succeeded,
361 const PP_NetAddress_Private& local_addr, 362 const PP_NetAddress_Private& local_addr,
362 const PP_NetAddress_Private& remote_addr); 363 const PP_NetAddress_Private& remote_addr);
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
471 472
472 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_; 473 scoped_ptr<content::GamepadSharedMemoryReader> gamepad_shared_memory_reader_;
473 474
474 scoped_ptr<PepperDeviceEnumerationEventHandler> 475 scoped_ptr<PepperDeviceEnumerationEventHandler>
475 device_enumeration_event_handler_; 476 device_enumeration_event_handler_;
476 477
477 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl); 478 DISALLOW_COPY_AND_ASSIGN(PepperPluginDelegateImpl);
478 }; 479 };
479 480
480 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_ 481 #endif // CONTENT_RENDERER_PEPPER_PEPPER_PLUGIN_DELEGATE_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698