Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Unreviewed, rolling out r209008.
This change appears to have caused two fast/mediastrem LayoutTests to fail. Reverted changeset: "[MediaStream] Don't request user permission for a device if it has already been granted in the current browsing context" https://bugs.webkit.org/show_bug.cgi?id=164760 http://trac.webkit.org/changeset/209008 Canonical link: https://commits.webkit.org/182729@main git-svn-id: https://svn.webkit.org/repository/webkit/trunk@209024 268f45cc-cd09-0410-ab3c-d52691b4dbfc
- Loading branch information
Showing
with
110 additions
and 385 deletions.
- +14 −0 LayoutTests/ChangeLog
- +2 −2 LayoutTests/fast/mediastream/MediaDevices-enumerateDevices.html
- +1 −1 LayoutTests/http/tests/media/media-stream/enumerate-devices-source-id-persistent.html
- +0 −29 LayoutTests/http/tests/media/media-stream/get-user-media-prompt-expected.txt
- +0 −68 LayoutTests/http/tests/media/media-stream/get-user-media-prompt.html
- +14 −0 Source/WebKit2/ChangeLog
- +21 −102 Source/WebKit2/UIProcess/UserMediaPermissionRequestManagerProxy.cpp
- +3 −21 Source/WebKit2/UIProcess/UserMediaPermissionRequestManagerProxy.h
- +1 −8 Source/WebKit2/UIProcess/UserMediaPermissionRequestProxy.cpp
- +3 −14 Source/WebKit2/UIProcess/UserMediaPermissionRequestProxy.h
- +14 −0 Tools/ChangeLog
- +1 −3 Tools/WebKitTestRunner/InjectedBundle/Bindings/TestRunner.idl
- +2 −34 Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.cpp
- +1 −3 Tools/WebKitTestRunner/InjectedBundle/InjectedBundle.h
- +2 −16 Tools/WebKitTestRunner/InjectedBundle/TestRunner.cpp
- +1 −5 Tools/WebKitTestRunner/InjectedBundle/TestRunner.h
- +26 −42 Tools/WebKitTestRunner/TestController.cpp
- +2 −5 Tools/WebKitTestRunner/TestController.h
- +2 −32 Tools/WebKitTestRunner/TestInvocation.cpp
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -11,7 +11,7 @@ | ||
|
||
if (window.testRunner) { | ||
testRunner.setUserMediaPermission(true); | ||
testRunner.setUserMediaPermissionForOrigin(true, "http://localhost:8000", location.href); | ||
} | ||
|
||
function setup() | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.