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

Unified Diff: chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.js

Issue 2112033002: [MD settings] closure compilation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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: chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.js
diff --git a/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.js b/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.js
index b094d5983c685e4c116ee19ba15728a88f21cd38..a374304bbeccff3459dc4982ebd92d0a460b319e 100644
--- a/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.js
+++ b/chrome/browser/resources/settings/clear_browsing_data_dialog/clear_browsing_data_dialog.js
@@ -35,7 +35,7 @@ Polymer({
/**
* List of options for the dropdown menu.
- * @private {!DropdownMenuOptionList>}
+ * @private {!DropdownMenuOptionList}
*/
clearFromOptions_: {
readOnly: true,
@@ -59,7 +59,7 @@ Polymer({
},
},
- /** @private {!settings.ClearBrowsingDataBrowserProxy} */
+ /** @private {settings.ClearBrowsingDataBrowserProxy} */
tommycli 2016/06/30 21:29:42 If this type is changed to ClearBrowsingDataBrowse
Dan Beam 2016/06/30 22:35:33 that's true, but kind of defeats the purpose of an
browserProxy_: null,
/** @override */
@@ -112,7 +112,7 @@ Polymer({
* Updates the text of a browsing data counter corresponding to the given
* preference.
* @param {string} prefName Browsing data type deletion preference.
- * @param {text} text The text with which to update the counter
+ * @param {string} text The text with which to update the counter
* @private
*/
updateCounterText_: function(prefName, text) {

Powered by Google App Engine
This is Rietveld 408576698