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(); |