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

Unified Diff: LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html

Issue 1160283002: Credential Management: Rename 'notifySignedOut' to 'requireUserMediation'. (1/3) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@rename-avatar
Patch Set: WebExposed. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
diff --git a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedout-basics.html b/LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
similarity index 64%
rename from LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedout-basics.html
rename to LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
index 09cf89358dcdd86dccfa7ac0c8359975019d6d50..9df20f44757f1bb0ebc7437e9061177208365a0f 100644
--- a/LayoutTests/http/tests/credentialmanager/credentialscontainer-notifysignedout-basics.html
+++ b/LayoutTests/http/tests/credentialmanager/credentialscontainer-requireusermediation-basics.html
@@ -1,5 +1,5 @@
<!DOCTYPE html>
-<title>Credential Manager: notifySignedOut() basics.</title>
+<title>Credential Manager: requireUserMediation() basics.</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script>
@@ -9,12 +9,12 @@ function stubResolverChecker(c) {
}
function stubRejectionChecker(reason) {
- assert_unreached("notifySignedOut() should not reject, but did: " + reason.name);
+ assert_unreached("requireUserMediation() should not reject, but did: " + reason.name);
}
async_test(function () {
- navigator.credentials.notifySignedOut().then(
+ navigator.credentials.requireUserMediation().then(
this.step_func(stubResolverChecker.bind(this)),
this.step_func(stubRejectionChecker.bind(this)));
-}, "Verify the basics of notifySignedOut()");
+}, "Verify the basics of requireUserMediation()");
</script>

Powered by Google App Engine
This is Rietveld 408576698