Index: chrome/browser/ui/extensions/shell_window.cc |
diff --git a/chrome/browser/ui/extensions/shell_window.cc b/chrome/browser/ui/extensions/shell_window.cc |
index 69cf956cab94d1b3702952ba45f29e873daa203a..d4bebf9ebaec57be57323302f2a6a4f7f2a88c72 100644 |
--- a/chrome/browser/ui/extensions/shell_window.cc |
+++ b/chrome/browser/ui/extensions/shell_window.cc |
@@ -107,6 +107,13 @@ bool ShellWindow::IsFullscreenOrPending() const { |
return false; |
} |
+void ShellWindow::RequestMediaAccessPermission( |
+ content::WebContents* web_contents, |
+ const content::MediaStreamRequest* request, |
+ const content::MediaResponseCallback& callback) { |
+ callback.Run(content::MediaStreamDevices()); |
Evan Stade
2012/06/09 05:47:38
not yet implemented.
|
+} |
+ |
string16 ShellWindow::GetTitle() const { |
// WebContents::GetTitle() will return the page's URL if there's no <title> |
// specified. However, we'd prefer to show the name of the extension in that |