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

Unified Diff: ui/file_manager/audio_player/js/audio_player_scripts.js

Issue 936243004: Files.app: Start to use new metadata model in Audio Player. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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: ui/file_manager/audio_player/js/audio_player_scripts.js
diff --git a/ui/file_manager/audio_player/js/audio_player_scripts.js b/ui/file_manager/audio_player/js/audio_player_scripts.js
index 2da94ba492cc8f7eed3a2934b046ff2f795e8fc8..8dd837e8cd554e2b4edd8c4342a4ea2bcd18960c 100644
--- a/ui/file_manager/audio_player/js/audio_player_scripts.js
+++ b/ui/file_manager/audio_player/js/audio_player_scripts.js
@@ -23,12 +23,24 @@ Object['observe'] = undefined;
// 'strict mode' is invoked for this scope.
'use strict';
+// Base classes.
+<include src="../../file_manager/foreground/js/metadata/metadata_cache_set.js">
yawano 2015/02/19 07:51:05 Please also add these files to audio_player.html.
hirono 2015/02/19 08:36:31 Done.
+<include src="../../file_manager/foreground/js/metadata/new_metadata_provider.js">
+
<include src="../../file_manager/common/js/async_util.js"/>
<include src="../../file_manager/common/js/file_type.js"/>
<include src="../../file_manager/common/js/util.js"/>
<include src="../../file_manager/common/js/volume_manager_common.js"/>
<include src="../../file_manager/foreground/js/volume_manager_wrapper.js">
-<include src="../../file_manager/foreground/js/metadata/metadata_cache.js"/>
+
+<include src="../../file_manager/foreground/js/metadata/content_metadata_provider.js">
+<include src="../../file_manager/foreground/js/metadata/external_metadata_provider.js">
+<include src="../../file_manager/foreground/js/metadata/file_system_metadata.js">
+<include src="../../file_manager/foreground/js/metadata/file_system_metadata_provider.js">
+<include src="../../file_manager/foreground/js/metadata/metadata_cache.js">
yawano 2015/02/19 07:51:05 MetadataCache seems not to be used by the js scrip
hirono 2015/02/19 08:36:31 Done.
+<include src="../../file_manager/foreground/js/metadata/metadata_cache_item.js">
+<include src="../../file_manager/foreground/js/metadata/metadata_item.js">
+<include src="../../file_manager/foreground/js/metadata/thumbnail_model.js">
<include src="audio_player.js"/>
<include src="audio_player_model.js"/>

Powered by Google App Engine
This is Rietveld 408576698