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

Unified Diff: chrome/browser/ui/webui/identity_internals_ui_browsertest.js

Issue 253543002: web_dev_style: check webui browser tests as well. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/webui/identity_internals_ui_browsertest.js
diff --git a/chrome/browser/ui/webui/identity_internals_ui_browsertest.js b/chrome/browser/ui/webui/identity_internals_ui_browsertest.js
index 67a6cb60abfcce15bf16436a81980ebed96033fd..765e8926edfffed4b4dcc8c7611c309557980ff3 100644
--- a/chrome/browser/ui/webui/identity_internals_ui_browsertest.js
+++ b/chrome/browser/ui/webui/identity_internals_ui_browsertest.js
@@ -31,7 +31,7 @@ BaseIdentityInternalsWebUITest.prototype = {
/**
* Gets all of the token entries on the page.
- * return {Element[]} Elements displaying token information.
+ * @return {!NodeList} Elements displaying token information.
*/
getTokens: function() {
return document.querySelectorAll('#token-list > div');
@@ -234,7 +234,7 @@ function IdentityInternalsWebUITestAsync() {}
IdentityInternalsWebUITestAsync.prototype = {
__proto__: IdentityInternalsMultipleTokensWebUITest.prototype,
- /** @inhritDoc */
+ /** @override */
isAsync: true,
};
@@ -243,7 +243,7 @@ TEST_F('IdentityInternalsWebUITestAsync', 'revokeToken', function() {
expectEquals(2, tokenListBefore.length);
var tokenRevokeDone = identity_internals.tokenRevokeDone;
identity_internals.tokenRevokeDone = this.continueTest(
- WhenTestDone.ALWAYS, function (accessTokens) {
+ WhenTestDone.ALWAYS, function(accessTokens) {
tokenRevokeDone.call(identity_internals, accessTokens);
identity_internals.tokenRevokeDone = tokenRevokeDone;
var tokenListAfter = this.getTokens();

Powered by Google App Engine
This is Rietveld 408576698