Correct indentation, JSDoc, etc... to comply with closure linter.
commit713ee20a4aa068ff1d9083d4fb115f77a6d2ff54
authorfukino <fukino@chromium.org>
Wed, 17 Sep 2014 08:53:18 +0000 (17 01:53 -0700)
committerCommit bot <commit-bot@chromium.org>
Wed, 17 Sep 2014 08:53:38 +0000 (17 08:53 +0000)
treea3fbf0f8703c4ec2822396a8af508d8d1ec3c31e
parentdb2b72884a57f1598624f02cde34264a4b7e8829
Correct indentation, JSDoc, etc... to comply with closure linter.

Errors reported by closure linter are fixed to keep accordance with style guide and prepare for closure compiler
Some errors are ignored.
- E:0007: We don't adopt the blank-line policy as it's not specified by style guide.
- E:0011,0002,0225: There are some false positives around bind().
- E:0121: Comma at end of object literal is valid in ES5, and not prohibited by style guide.

BUG=412662
TEST=find ui/file_manager -name *.js ! -path */*_scripts.js | xargs gjslint --strict --disable 0007,0011,0002,0121,0225

Review URL: https://codereview.chromium.org/571453002

Cr-Commit-Position: refs/heads/master@{#295246}
60 files changed:
ui/file_manager/file_manager/audio_player/elements/track_list.js
ui/file_manager/file_manager/audio_player/js/audio_player.js
ui/file_manager/file_manager/background/js/background.js
ui/file_manager/file_manager/background/js/drive_sync_handler.js
ui/file_manager/file_manager/background/js/file_operation_manager.js
ui/file_manager/file_manager/background/js/volume_manager.js
ui/file_manager/file_manager/common/js/async_util.js
ui/file_manager/file_manager/common/js/util.js
ui/file_manager/file_manager/foreground/js/commandbutton.js
ui/file_manager/file_manager/foreground/js/directory_contents.js
ui/file_manager/file_manager/foreground/js/directory_model.js
ui/file_manager/file_manager/foreground/js/directory_tree.js
ui/file_manager/file_manager/foreground/js/drive_banners.js
ui/file_manager/file_manager/foreground/js/file_grid.js
ui/file_manager/file_manager/foreground/js/file_manager.js
ui/file_manager/file_manager/foreground/js/file_manager_commands.js
ui/file_manager/file_manager/foreground/js/file_selection.js
ui/file_manager/file_manager/foreground/js/file_table.js
ui/file_manager/file_manager/foreground/js/file_tasks.js
ui/file_manager/file_manager/foreground/js/file_transfer_controller.js
ui/file_manager/file_manager/foreground/js/file_type.js
ui/file_manager/file_manager/foreground/js/file_watcher.js
ui/file_manager/file_manager/foreground/js/metadata/byte_reader.js
ui/file_manager/file_manager/foreground/js/metadata/function_sequence.js
ui/file_manager/file_manager/foreground/js/metadata/id3_parser.js
ui/file_manager/file_manager/foreground/js/metadata/image_parsers.js
ui/file_manager/file_manager/foreground/js/metadata/metadata_cache.js
ui/file_manager/file_manager/foreground/js/metadata/metadata_dispatcher.js
ui/file_manager/file_manager/foreground/js/navigation_list_model.js
ui/file_manager/file_manager/foreground/js/share_dialog.js
ui/file_manager/file_manager/foreground/js/suggest_apps_dialog.js
ui/file_manager/file_manager/foreground/js/thumbnail_loader.js
ui/file_manager/file_manager/foreground/js/ui/breadcrumbs_controller.js
ui/file_manager/file_manager/foreground/js/ui/multi_profile_share_dialog.js
ui/file_manager/file_manager/foreground/js/ui/search_box.js
ui/file_manager/file_manager/foreground/js/volume_manager_wrapper.js
ui/file_manager/gallery/js/background.js
ui/file_manager/gallery/js/gallery.js
ui/file_manager/gallery/js/gallery_item.js
ui/file_manager/gallery/js/image_editor/exif_encoder.js
ui/file_manager/gallery/js/image_editor/filter.js
ui/file_manager/gallery/js/image_editor/image_adjust.js
ui/file_manager/gallery/js/image_editor/image_editor.js
ui/file_manager/gallery/js/image_editor/image_encoder.js
ui/file_manager/gallery/js/image_editor/image_transform.js
ui/file_manager/gallery/js/image_editor/image_util.js
ui/file_manager/gallery/js/image_editor/image_view.js
ui/file_manager/gallery/js/image_editor/viewport.js
ui/file_manager/gallery/js/mosaic_mode.js
ui/file_manager/gallery/js/slide_mode.js
ui/file_manager/image_loader/cache.js
ui/file_manager/image_loader/image_loader.js
ui/file_manager/image_loader/image_loader_client.js
ui/file_manager/image_loader/request.js
ui/file_manager/video_player/js/background.js
ui/file_manager/video_player/js/cast/cast_extension_discoverer.js
ui/file_manager/video_player/js/cast/cast_video_element.js
ui/file_manager/video_player/js/cast/caster.js
ui/file_manager/video_player/js/media_controls.js
ui/file_manager/video_player/js/video_player.js