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

Unified Diff: chrome/browser/performance_monitor/metric_info.h

Issue 10874041: Refactor Metrics (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Latest master for cq Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/performance_monitor/metric_info.h
diff --git a/chrome/browser/performance_monitor/metric_info.h b/chrome/browser/performance_monitor/metric_info.h
deleted file mode 100644
index 8817f405444118e81a0c59021bc05a37834045ee..0000000000000000000000000000000000000000
--- a/chrome/browser/performance_monitor/metric_info.h
+++ /dev/null
@@ -1,26 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_INFO_H_
-#define CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_INFO_H_
-
-#include <string>
-
-#include "base/time.h"
-
-namespace performance_monitor {
-
-struct MetricInfo {
- MetricInfo();
- MetricInfo(const base::Time& metric_time, double metric_value);
- MetricInfo(const std::string& metric_time, const std::string& metric_value);
- ~MetricInfo();
-
- base::Time time;
- double value;
-};
-
-} // namespace performance_monitor
-
-#endif // CHROME_BROWSER_PERFORMANCE_MONITOR_METRIC_INFO_H_
« no previous file with comments | « chrome/browser/performance_monitor/metric_details.h ('k') | chrome/browser/performance_monitor/metric_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698