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

Unified Diff: content/public/browser/background_tracing_config.h

Issue 1089253003: Re-land first pass BackgroundTracingManager. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Split config into separate headers and build fix. Created 5 years, 7 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: content/public/browser/background_tracing_config.h
diff --git a/content/public/browser/background_tracing_config.h b/content/public/browser/background_tracing_config.h
new file mode 100644
index 0000000000000000000000000000000000000000..af97e26374cc9d075a6f7db4ff5ac6ea4e3ae14e
--- /dev/null
+++ b/content/public/browser/background_tracing_config.h
@@ -0,0 +1,46 @@
+// Copyright 2015 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 CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_
+#define CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_
+
+#include "base/memory/ref_counted_memory.h"
+#include "base/trace_event/trace_event_impl.h"
+#include "content/common/content_export.h"
+
+namespace base {
+class DictionaryValue;
+}
+
+namespace content {
+
+// BackgroundTracingConfig is passed to the BackgroundTracingManager to
+// setup the trigger rules used to enable/disable background tracing.
+struct CONTENT_EXPORT BackgroundTracingConfig
+ : public base::RefCountedThreadSafe<BackgroundTracingConfig> {
no sievers 2015/05/14 21:25:16 Why RefCounted? Seems overkill for a simple config
shatch 2015/05/15 21:00:51 Done.
+ enum Mode {
+ PREEMPTIVE_TRACING_MODE,
+ REACTIVE_TRACING_MODE,
+ };
+ enum CategoryPreset {
+ BENCHMARK,
+ BENCHMARK_DEEP,
+ };
+
no sievers 2015/05/14 21:25:16 Do you think we could get rid of the config base c
shatch 2015/05/15 21:00:51 When we talked offline, we kicked around the idea
+ Mode mode;
+
+ static BackgroundTracingConfig* FromDict(const base::DictionaryValue* dict);
+ static void IntoDict(const BackgroundTracingConfig* config,
+ base::DictionaryValue* dict);
+
+ protected:
+ friend class base::RefCountedThreadSafe<BackgroundTracingConfig>;
+
+ BackgroundTracingConfig(Mode mode);
+ virtual ~BackgroundTracingConfig();
+};
+
+} // namespace content
+
+#endif // CONTENT_PUBLIC_BROWSER_BACKGROUND_TRACING_CONFIG_H_

Powered by Google App Engine
This is Rietveld 408576698