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

Side by Side Diff: content/public/browser/browser_plugin_guest_delegate.h

Issue 235733002: <webview>: Move media request to chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@move_geolocation_to_chrome
Patch Set: Fixed rebase Created 6 years, 8 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
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 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_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_
6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_
7 7
8 #include "base/callback_forward.h" 8 #include "base/callback_forward.h"
9 #include "base/process/kill.h" 9 #include "base/process/kill.h"
10 #include "base/strings/string16.h" 10 #include "base/strings/string16.h"
11 #include "base/values.h" 11 #include "base/values.h"
12 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
13 #include "content/public/common/browser_plugin_permission_type.h" 13 #include "content/public/common/browser_plugin_permission_type.h"
14 #include "content/public/common/media_stream_request.h"
14 #include "ui/gfx/geometry/rect.h" 15 #include "ui/gfx/geometry/rect.h"
15 #include "ui/gfx/size.h" 16 #include "ui/gfx/size.h"
16 #include "url/gurl.h" 17 #include "url/gurl.h"
17 18
18 namespace content { 19 namespace content {
19 20
20 struct NativeWebKeyboardEvent; 21 struct NativeWebKeyboardEvent;
21 22
22 // Objects implement this interface to get notified about changes in the guest 23 // Objects implement this interface to get notified about changes in the guest
23 // WebContents and to provide necessary functionality. 24 // WebContents and to provide necessary functionality.
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
92 const base::DictionaryValue& request_info, 93 const base::DictionaryValue& request_info,
93 const PermissionResponseCallback& callback, 94 const PermissionResponseCallback& callback,
94 bool allowed_by_default) {} 95 bool allowed_by_default) {}
95 96
96 // Requests resolution of a potentially relative URL. 97 // Requests resolution of a potentially relative URL.
97 virtual GURL ResolveURL(const std::string& src); 98 virtual GURL ResolveURL(const std::string& src);
98 99
99 // Notifies that the content size of the guest has changed in autosize mode. 100 // Notifies that the content size of the guest has changed in autosize mode.
100 virtual void SizeChanged(const gfx::Size& old_size, 101 virtual void SizeChanged(const gfx::Size& old_size,
101 const gfx::Size& new_size) {} 102 const gfx::Size& new_size) {}
103
104 // Asks permission to use the camera and/or microphone. If permission is
105 // granted, a call should be made to |callback| with the devices. If the
106 // request is denied, a call should be made to |callback| with an empty list
107 // of devices. |request| has the details of the request (e.g. which of audio
108 // and/or video devices are requested, and lists of available devices).
109 virtual void RequestMediaAccessPermission(
110 const MediaStreamRequest& request,
111 const MediaResponseCallback& callback);
112
102 }; 113 };
103 114
104 } // namespace content 115 } // namespace content
105 116
106 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_ 117 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_PLUGIN_GUEST_DELEGATE_H_
OLDNEW
« no previous file with comments | « content/browser/browser_plugin/browser_plugin_guest.cc ('k') | content/public/browser/browser_plugin_guest_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698