diff options
author | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-20 02:50:45 +0000 |
---|---|---|
committer | dbeam@chromium.org <dbeam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-12-20 02:50:45 +0000 |
commit | c4991f239998abe4a577be06c4419666c85556cd (patch) | |
tree | 33cff918c80bc3333f095886a4d0ca0981cd9e94 /chrome/browser/resources/options/manage_profile_overlay.js | |
parent | 3024571e695e2da3e3caaed51302806b93c8973d (diff) | |
download | chromium_src-c4991f239998abe4a577be06c4419666c85556cd.zip chromium_src-c4991f239998abe4a577be06c4419666c85556cd.tar.gz chromium_src-c4991f239998abe4a577be06c4419666c85556cd.tar.bz2 |
[web_dev_style] (Boolean|Number|String) -> (boolean|number|string) and add
presubmit check.
BUG=113202
TEST=chrome/browser/resources/test_presubmit.py
Review URL: https://codereview.chromium.org/11628003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@174083 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources/options/manage_profile_overlay.js')
-rw-r--r-- | chrome/browser/resources/options/manage_profile_overlay.js | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/chrome/browser/resources/options/manage_profile_overlay.js b/chrome/browser/resources/options/manage_profile_overlay.js index 84eba7d..52866ec 100644 --- a/chrome/browser/resources/options/manage_profile_overlay.js +++ b/chrome/browser/resources/options/manage_profile_overlay.js @@ -120,7 +120,7 @@ cr.define('options', function() { * filePath: "/path/to/profile/data/on/disk" * isCurrentProfile: false, * }; - * @param {String} mode A label that specifies the type of dialog + * @param {string} mode A label that specifies the type of dialog * box which is currently being viewed (i.e. 'create' or * 'manage'). * @private @@ -176,7 +176,7 @@ cr.define('options', function() { /** * Display the error bubble, with |errorText| in the bubble. * @param {string} errorText The localized string id to display as an error. - * @param {String} mode A label that specifies the type of dialog + * @param {string} mode A label that specifies the type of dialog * box which is currently being viewed (i.e. 'create' or * 'manage'). * @private @@ -191,7 +191,7 @@ cr.define('options', function() { /** * Hide the error bubble. - * @param {String} mode A label that specifies the type of dialog + * @param {string} mode A label that specifies the type of dialog * box which is currently being viewed (i.e. 'create' or * 'manage'). * @private @@ -204,7 +204,7 @@ cr.define('options', function() { /** * oninput callback for <input> field. * @param {Event} event The event object. - * @param {String} mode A label that specifies the type of dialog + * @param {string} mode A label that specifies the type of dialog * box which is currently being viewed (i.e. 'create' or * 'manage'). * @private @@ -242,7 +242,7 @@ cr.define('options', function() { /** * Called when the selected icon in the icon grid changes. - * @param {String} mode A label that specifies the type of dialog + * @param {string} mode A label that specifies the type of dialog * box which is currently being viewed (i.e. 'create' or * 'manage'). * @private |