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

Side by Side Diff: tracing/tracing/ui/tracks/stacked_bars_track.html

Issue 2526613002: Return short-hand object literals to exportTo. (Closed)
Patch Set: . Created 4 years 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <!-- 2 <!--
3 Copyright (c) 2013 The Chromium Authors. All rights reserved. 3 Copyright (c) 2013 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 7
8 <link rel="import" href="/tracing/ui/base/heading.html"> 8 <link rel="import" href="/tracing/ui/base/heading.html">
9 <link rel="import" href="/tracing/ui/base/ui.html"> 9 <link rel="import" href="/tracing/ui/base/ui.html">
10 <link rel="import" href="/tracing/ui/tracks/track.html"> 10 <link rel="import" href="/tracing/ui/tracks/track.html">
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 worldMaxDist); 117 worldMaxDist);
118 118
119 if (!snapshot) 119 if (!snapshot)
120 return; 120 return;
121 121
122 selection.push(snapshot); 122 selection.push(snapshot);
123 } 123 }
124 }; 124 };
125 125
126 return { 126 return {
127 StackedBarsTrack: StackedBarsTrack 127 StackedBarsTrack,
128 }; 128 };
129 }); 129 });
130 </script> 130 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698