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

Side by Side Diff: content/browser/tracing/background_tracing_config_impl.h

Issue 1789673002: [bulk-reports] - Add BENCHMARK_BLINK_GC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | content/browser/tracing/background_tracing_config_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_TRACING_BACKGROUND_TRACING_CONFIG_IMPL_H_ 5 #ifndef CONTENT_BROWSER_TRACING_BACKGROUND_TRACING_CONFIG_IMPL_H_
6 #define CONTENT_BROWSER_TRACING_BACKGROUND_TRACING_CONFIG_IMPL_H_ 6 #define CONTENT_BROWSER_TRACING_BACKGROUND_TRACING_CONFIG_IMPL_H_
7 7
8 #include "base/gtest_prod_util.h" 8 #include "base/gtest_prod_util.h"
9 #include "base/macros.h" 9 #include "base/macros.h"
10 #include "base/memory/scoped_vector.h" 10 #include "base/memory/scoped_vector.h"
(...skipping 12 matching lines...) Expand all
23 23
24 // From BackgroundTracingConfig 24 // From BackgroundTracingConfig
25 void IntoDict(base::DictionaryValue* dict) const override; 25 void IntoDict(base::DictionaryValue* dict) const override;
26 26
27 enum CategoryPreset { 27 enum CategoryPreset {
28 BENCHMARK, 28 BENCHMARK,
29 BENCHMARK_DEEP, 29 BENCHMARK_DEEP,
30 BENCHMARK_GPU, 30 BENCHMARK_GPU,
31 BENCHMARK_IPC, 31 BENCHMARK_IPC,
32 BENCHMARK_STARTUP, 32 BENCHMARK_STARTUP,
33 BENCHMARK_BLINK_GC,
33 BLINK_STYLE 34 BLINK_STYLE
34 }; 35 };
35 36
36 CategoryPreset category_preset() const { return category_preset_; } 37 CategoryPreset category_preset() const { return category_preset_; }
37 void set_category_preset(CategoryPreset category_preset) { 38 void set_category_preset(CategoryPreset category_preset) {
38 category_preset_ = category_preset; 39 category_preset_ = category_preset;
39 } 40 }
40 41
41 const ScopedVector<BackgroundTracingRule>& rules() const { return rules_; } 42 const ScopedVector<BackgroundTracingRule>& rules() const { return rules_; }
42 const std::string& scenario_name() const { return scenario_name_; } 43 const std::string& scenario_name() const { return scenario_name_; }
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 std::string scenario_name_; 76 std::string scenario_name_;
76 std::string enable_blink_features_; 77 std::string enable_blink_features_;
77 std::string disable_blink_features_; 78 std::string disable_blink_features_;
78 79
79 DISALLOW_COPY_AND_ASSIGN(BackgroundTracingConfigImpl); 80 DISALLOW_COPY_AND_ASSIGN(BackgroundTracingConfigImpl);
80 }; 81 };
81 82
82 } // namespace content 83 } // namespace content
83 84
84 #endif // CONTENT_BROWSER_TRACING_BACKGROUND_TRACING_CONFIG_IMPL_H_ 85 #endif // CONTENT_BROWSER_TRACING_BACKGROUND_TRACING_CONFIG_IMPL_H_
OLDNEW
« no previous file with comments | « no previous file | content/browser/tracing/background_tracing_config_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698