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

Unified Diff: apps/benchmark/measurements.h

Issue 1316163003: Support duration events in `benchmark.mojo`. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « apps/benchmark/event_unittest.cc ('k') | apps/benchmark/measurements.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: apps/benchmark/measurements.h
diff --git a/apps/benchmark/measurements.h b/apps/benchmark/measurements.h
index eeb472795e39236664c41acc56a5d7e643184339..a89665ed742b3b2ad0d2cce2f960e60da898d94b 100644
--- a/apps/benchmark/measurements.h
+++ b/apps/benchmark/measurements.h
@@ -18,10 +18,10 @@ namespace benchmark {
// Describes a trace event to match.
struct EventSpec {
std::string name;
- std::string category;
+ std::string categories;
EventSpec();
- EventSpec(std::string name, std::string category);
+ EventSpec(std::string name, std::string categories);
~EventSpec();
};
@@ -38,7 +38,7 @@ struct Measurement {
Measurement();
Measurement(MeasurementType type,
std::string target_name,
- std::string target_category);
+ std::string target_categories);
~Measurement();
};
« no previous file with comments | « apps/benchmark/event_unittest.cc ('k') | apps/benchmark/measurements.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698