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

Side by Side Diff: content/renderer/browser_plugin/browser_plugin_manager_impl.h

Issue 11093080: <webview>: First stab at implementing media permission request for guests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle multiple listeners based on our discussion, requires 2 webkit changes. Created 8 years 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_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 5 #ifndef CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 6 #define CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
7 7
8 #include "content/renderer/browser_plugin/browser_plugin_manager.h" 8 #include "content/renderer/browser_plugin/browser_plugin_manager.h"
9 #include "googleurl/src/gurl.h" 9 #include "googleurl/src/gurl.h"
10 10
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 const GURL& old_url, 57 const GURL& old_url,
58 const GURL& new_url, 58 const GURL& new_url,
59 bool is_top_level); 59 bool is_top_level);
60 void OnSetCursor(int instance_id, 60 void OnSetCursor(int instance_id,
61 const WebCursor& cursor); 61 const WebCursor& cursor);
62 void OnPluginAtPositionRequest(const IPC::Message& message, 62 void OnPluginAtPositionRequest(const IPC::Message& message,
63 int request_id, 63 int request_id,
64 const gfx::Point& position); 64 const gfx::Point& position);
65 void OnGuestUnresponsive(int instance_id, int process_id); 65 void OnGuestUnresponsive(int instance_id, int process_id);
66 void OnGuestResponsive(int instance_id, int process_id); 66 void OnGuestResponsive(int instance_id, int process_id);
67 void OnRequestMediaAccess(int instance_id,
68 int request_id,
69 const GURL& security_origin);
67 70
68 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl); 71 DISALLOW_COPY_AND_ASSIGN(BrowserPluginManagerImpl);
69 }; 72 };
70 73
71 } // namespace content 74 } // namespace content
72 75
73 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_ 76 #endif // CONTENT_RENDERER_BROWSER_PLUGIN_BROWSER_PLUGIN_MANAGER_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698