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

Side by Side Diff: chrome/browser/metrics/metric_event_duration_details.h

Issue 673013002: Remove OTIFICATION_METRIC_EVENT_DURATION that no-one is observing (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: remove details Created 6 years, 1 month 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
« no previous file with comments | « chrome/browser/chrome_notification_types.h ('k') | chrome/browser/ui/webui/metrics_handler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_METRICS_METRIC_EVENT_DURATION_DETAILS_H_
6 #define CHROME_BROWSER_METRICS_METRIC_EVENT_DURATION_DETAILS_H_
7
8 #include <string>
9
10 // Used when sending a notification about an event that occurred that we want
11 // to time.
12 struct MetricEventDurationDetails {
13 MetricEventDurationDetails(const std::string& e, int d)
14 : event_name(e), duration_ms(d) {}
15
16 std::string event_name;
17 int duration_ms;
18 };
19
20 #endif // CHROME_BROWSER_METRICS_METRIC_EVENT_DURATION_DETAILS_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_notification_types.h ('k') | chrome/browser/ui/webui/metrics_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698