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

Side by Side Diff: chrome/browser/resources/gpu_internals/timeline_test.html

Issue 11962043: Move webui resources from chrome\browser\resources\shared to ui\webui\resources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 7 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2012 The Chromium Authors. All rights reserved. 3 Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 Use of this source code is governed by a BSD-style license that can be 4 Use of this source code is governed by a BSD-style license that can be
5 found in the LICENSE file. 5 found in the LICENSE file.
6 --> 6 -->
7 <html> 7 <html>
8 <head> 8 <head>
9 <title></title> 9 <title></title>
10 <link rel="stylesheet" href="timeline.css"> 10 <link rel="stylesheet" href="timeline.css">
11 <!--<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/ba se.js"></script>--> 11 <!--<script src="http://closure-library.googlecode.com/svn/trunk/closure/goog/ba se.js"></script>-->
12 <script src="../shared/js/cr.js"></script> 12 <script src="../../../../ui/webui/resources/js/cr.js"></script>
13 <script src="../shared/js/cr/event_target.js"></script> 13 <script src="../../../../ui/webui/resources/js/cr/event_target.js"></script>
14 <script src="../shared/js/cr/ui.js"></script> 14 <script src="../../../../ui/webui/resources/js/cr/ui.js"></script>
15 <script src="fast_rect_renderer.js"></script> 15 <script src="fast_rect_renderer.js"></script>
16 <script src="sorted_array_utils.js"></script> 16 <script src="sorted_array_utils.js"></script>
17 <script src="timeline.js"></script> 17 <script src="timeline.js"></script>
18 <script src="timeline_track.js"></script> 18 <script src="timeline_track.js"></script>
19 <script src="timeline_model.js"></script> 19 <script src="timeline_model.js"></script>
20 <!-- 20 <!--
21 <script> 21 <script>
22 22
23 goog.require('goog.testing.jsunit'); 23 goog.require('goog.testing.jsunit');
24 24
(...skipping 12 matching lines...) Expand all
37 model.importEvents(tracingControllerDataSets); 37 model.importEvents(tracingControllerDataSets);
38 timeline = new gpu.Timeline(); 38 timeline = new gpu.Timeline();
39 timeline.model = model; 39 timeline.model = model;
40 sandbox.appendChild(timeline); 40 sandbox.appendChild(timeline);
41 } 41 }
42 document.addEventListener('DOMContentLoaded', testTimeline); 42 document.addEventListener('DOMContentLoaded', testTimeline);
43 </script> 43 </script>
44 44
45 </body> 45 </body>
46 </html> 46 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/flags_warning.html ('k') | chrome/browser/resources/history/history.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698