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

Side by Side Diff: tracing/tracing/ui/base/chart_base_2d.html

Issue 2995843002: Merge iteration_helpers into utils.html. (Closed)
Patch Set: Created 3 years, 4 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
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/iteration_helpers.html">
9 <link rel="import" href="/tracing/base/math/math.html"> 8 <link rel="import" href="/tracing/base/math/math.html">
10 <link rel="import" href="/tracing/base/math/range.html"> 9 <link rel="import" href="/tracing/base/math/range.html">
11 <link rel="import" href="/tracing/base/math/statistics.html"> 10 <link rel="import" href="/tracing/base/math/statistics.html">
12 <link rel="import" href="/tracing/base/raf.html"> 11 <link rel="import" href="/tracing/base/raf.html">
12 <link rel="import" href="/tracing/base/utils.html">
13 <link rel="import" href="/tracing/ui/base/chart_base.html"> 13 <link rel="import" href="/tracing/ui/base/chart_base.html">
14 <link rel="import" href="/tracing/ui/base/mouse_tracker.html"> 14 <link rel="import" href="/tracing/ui/base/mouse_tracker.html">
15 15
16 <style> 16 <style>
17 * /deep/ .chart-base-2d.updating-brushing-state #brushes > * { 17 * /deep/ .chart-base-2d.updating-brushing-state #brushes > * {
18 fill: rgb(103, 199, 165) 18 fill: rgb(103, 199, 165)
19 } 19 }
20 20
21 * /deep/ .chart-base-2d #brushes { 21 * /deep/ .chart-base-2d #brushes {
22 fill: rgb(213, 236, 229) 22 fill: rgb(213, 236, 229)
(...skipping 537 matching lines...) Expand 10 before | Expand all | Expand 10 after
560 this.dispatchEvent(dataEvent); 560 this.dispatchEvent(dataEvent);
561 Polymer.dom(this).classList.remove('updating-brushing-state'); 561 Polymer.dom(this).classList.remove('updating-brushing-state');
562 } 562 }
563 }; 563 };
564 564
565 return { 565 return {
566 ChartBase2D, 566 ChartBase2D,
567 }; 567 };
568 }); 568 });
569 </script> 569 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698