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

Side by Side Diff: tracing/tracing/ui/tracks/chart_series_y_axis.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/base/color_scheme.html"> 8 <link rel="import" href="/tracing/base/color_scheme.html">
9 <link rel="import" href="/tracing/base/range.html"> 9 <link rel="import" href="/tracing/base/range.html">
10 10
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
219 ctx, viewLeft, curViewYNegative, viewRight, curViewYNegative); 219 ctx, viewLeft, curViewYNegative, viewRight, curViewYNegative);
220 } 220 }
221 } 221 }
222 } 222 }
223 ctx.stroke(); 223 ctx.stroke();
224 ctx.restore(); 224 ctx.restore();
225 } 225 }
226 }; 226 };
227 227
228 return { 228 return {
229 ChartSeriesYAxis: ChartSeriesYAxis 229 ChartSeriesYAxis,
230 }; 230 };
231 }); 231 });
232 </script> 232 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698