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

Unified Diff: tools/telemetry/telemetry/web_components/ui/chart_base.html

Issue 218503002: Remove telemetry.web_components.ui charts in favor of tvcm.ui charts (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove d3 Created 6 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: tools/telemetry/telemetry/web_components/ui/chart_base.html
diff --git a/tools/telemetry/telemetry/web_components/ui/chart_base.html b/tools/telemetry/telemetry/web_components/ui/chart_base.html
deleted file mode 100644
index c51ab1474cfcf7dd4c24d2e6a6e864ab7ac65969..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/web_components/ui/chart_base.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<!--
-Copyright 2014 The Chromium Authors. All rights reserved.
-Use of this source code is governed by a BSD-style license that can be
-found in the LICENSE file.
--->
-<style>
- .chart-base #title {
- font-size: 18pt;
- }
-
- .chart-base .axis path,
- .chart-base .axis line {
- fill: none;
- shape-rendering: crispEdges;
- stroke: #000;
- }
-</style>
-<template id="chart-base-template">
- <svg> <!-- svg tag is dropped by ChartBase.decorate. -->
- <g xmlns="http://www.w3.org/2000/svg" id="chart-area">
- <g class="x axis"></g>
- <g class="y axis"></g>
- <text id="title"></text>
- </g>
- </svg>
-</template>

Powered by Google App Engine
This is Rietveld 408576698