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

Unified Diff: chrome/browser/resources/file_manager/audio_player/js/audio_player_scripts.js

Issue 247123002: Move Files.app files to ui/file_manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the test failure on non-chromeos Created 6 years, 8 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/file_manager/audio_player/js/audio_player_scripts.js
diff --git a/chrome/browser/resources/file_manager/audio_player/js/audio_player_scripts.js b/chrome/browser/resources/file_manager/audio_player/js/audio_player_scripts.js
deleted file mode 100644
index b262d61e7198d3255bdd844de293861cd70b9327..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/file_manager/audio_player/js/audio_player_scripts.js
+++ /dev/null
@@ -1,48 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-<include src="../../../../../../ui/webui/resources/js/cr.js"/>
-<include src="../../../../../../ui/webui/resources/js/cr/event_target.js"/>
-<include src="../../../../../../ui/webui/resources/js/cr/ui/array_data_model.js"/>
-
-// Hack for polymer, notifying that CSP is enabled here.
-// TODO(yoshiki): Find a way to remove the hack.
-if (!('securityPolicy' in document))
- document['securityPolicy'] = {};
-if (!('allowsEval' in document.securityPolicy))
- document.securityPolicy['allowsEval'] = false;
-
-// Force Polymer into dirty-checking mode, see http://crbug.com/351967
-Object['observe'] = undefined;
-Object['unobserve'] = undefined;
-
-<include src="../../../../../../third_party/polymer/platform/platform.js">
-<include src="../../../../../../third_party/polymer/polymer/polymer.js">
-
-(function() {
-
-// 'strict mode' is invoked for this scope.
-'use strict';
-
-<include src="../../common/js/async_util.js"/>
-<include src="../../common/js/util.js"/>
-<include src="../../common/js/path_util.js"/>
-<include src="../../foreground/js/file_type.js"/>
-<include src="../../foreground/js/volume_manager_wrapper.js">
-<include src="../../foreground/js/metadata/metadata_cache.js"/>
-
-<include src="audio_player.js"/>
-<include src="audio_player_model.js"/>
-<include src="../../foreground/js/media/player_testapi.js"/>
-
-<include src="../elements/track_list.js"/>
-<include src="../elements/control_panel.js"/>
-<include src="../elements/volume_controller.js"/>
-<include src="../elements/audio_player.js"/>
-
-window.reload = reload;
-window.unload = unload;
-window.AudioPlayer = AudioPlayer;
-
-})();

Powered by Google App Engine
This is Rietveld 408576698