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

Side by Side Diff: tracing/tracing/ui/timeline_interest_range.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) 2014 The Chromium Authors. All rights reserved. 3 Copyright (c) 2014 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/range.html"> 8 <link rel="import" href="/tracing/base/range.html">
9 9
10 <script> 10 <script>
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 viewX - arrowSize * 0.75, viewY + viewHeight, 234 viewX - arrowSize * 0.75, viewY + viewHeight,
235 viewX + arrowSize * 0.75, viewY + viewHeight, 235 viewX + arrowSize * 0.75, viewY + viewHeight,
236 viewX, viewY + viewHeight - arrowSize); 236 viewX, viewY + viewHeight - arrowSize);
237 ctx.fill(); 237 ctx.fill();
238 238
239 ctx.restore(); 239 ctx.restore();
240 } 240 }
241 }; 241 };
242 242
243 return { 243 return {
244 SnapIndicator: SnapIndicator, 244 SnapIndicator,
245 TimelineInterestRange: TimelineInterestRange 245 TimelineInterestRange,
246 }; 246 };
247 }); 247 });
248 </script> 248 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698