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

Unified Diff: chrome/browser/resources/file_manager/action_choice.html

Issue 39123003: [Files.app] Split the JavaScript files into subdirectories: common, background, and foreground (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed test failure. Created 7 years, 2 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/action_choice.html
diff --git a/chrome/browser/resources/file_manager/action_choice.html b/chrome/browser/resources/file_manager/action_choice.html
index 13ced3499fcf1b1e4211e5f15091d76d72c04c8c..0d0041bbc2027a2c0c52645bc92242bfbe0e586a 100644
--- a/chrome/browser/resources/file_manager/action_choice.html
+++ b/chrome/browser/resources/file_manager/action_choice.html
@@ -12,7 +12,7 @@
<!-- Don't load action_choice_scripts.js when flattening is disabled. -->
<if expr="0"><!-- </if>
- <script src="js/action_choice_scripts.js"></script>
+ <script src="foreground/js/action_choice/action_choice_scripts.js"></script>
<if expr="0"> --></if>
<if expr="0">
@@ -38,18 +38,19 @@
<script src="chrome://resources/js/cr/ui/list_single_selection_model.js"></script>
<script src="chrome://resources/js/cr/ui/list_selection_controller.js"></script>
- <script src="js/async_util.js"></script>
- <script src="js/util.js"></script>
- <script src="js/file_type.js"></script>
- <script src="js/path_util.js"></script>
- <script src="js/volume_manager_wrapper.js"></script>
- <script src="js/metadata/metadata_cache.js"></script>
- <script src="js/metrics.js"></script>
- <script src="js/image_editor/image_util.js"></script>
- <script src="js/media/media_util.js"></script>
- <script src="js/action_choice_util.js"></script>
+ <script src="common/js/async_util.js"></script>
+ <script src="common/js/util.js"></script>
+ <script src="common/js/path_util.js"></script>
- <script src="js/action_choice.js"></script>
+ <script src="foreground/js/file_type.js"></script>
+ <script src="foreground/js/volume_manager_wrapper.js"></script>
+ <script src="foreground/js/metadata/metadata_cache.js"></script>
+ <script src="foreground/js/metrics.js"></script>
+ <script src="foreground/js/image_editor/image_util.js"></script>
+ <script src="foreground/js/media/media_util.js"></script>
+
+ <script src="foreground/js/action_choice/action_choice_util.js"></script>
+ <script src="foreground/js/action_choice/action_choice.js"></script>
</if>
<title>&#xFEFF;</title>
</head>

Powered by Google App Engine
This is Rietveld 408576698