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

Side by Side Diff: tracing/tracing/ui/tracks/chart_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) 2015 The Chromium Authors. All rights reserved. 3 Copyright (c) 2015 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/chart_transform.html"> 10 <link rel="import" href="/tracing/ui/tracks/chart_transform.html">
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 * See the description of ChartSeriesYAxis.autoSetFromRange for the optional 268 * See the description of ChartSeriesYAxis.autoSetFromRange for the optional
269 * configuration argument flags. 269 * configuration argument flags.
270 */ 270 */
271 autoSetAxis: function(seriesYAxis, opt_config) { 271 autoSetAxis: function(seriesYAxis, opt_config) {
272 var series = this.axisGuidToAxisData_[seriesYAxis.guid].series; 272 var series = this.axisGuidToAxisData_[seriesYAxis.guid].series;
273 seriesYAxis.autoSetFromSeries(series, opt_config); 273 seriesYAxis.autoSetFromSeries(series, opt_config);
274 } 274 }
275 }; 275 };
276 276
277 return { 277 return {
278 ChartTrack: ChartTrack 278 ChartTrack,
279 }; 279 };
280 }); 280 });
281 </script> 281 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698