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

Unified Diff: components/metrics/call_stack_profile_params.cc

Issue 2927593002: Make stack sampling profiler sample beyond startup. (Closed)
Patch Set: Remove debug log statements. Created 3 years, 5 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: components/metrics/call_stack_profile_params.cc
diff --git a/components/metrics/call_stack_profile_params.cc b/components/metrics/call_stack_profile_params.cc
deleted file mode 100644
index e937283616c3e4e859e7f2c447c671c3837eab53..0000000000000000000000000000000000000000
--- a/components/metrics/call_stack_profile_params.cc
+++ /dev/null
@@ -1,22 +0,0 @@
-// 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.
-
-#include "components/metrics/call_stack_profile_params.h"
-
-namespace metrics {
-
-CallStackProfileParams::CallStackProfileParams()
- : CallStackProfileParams(UNKNOWN_PROCESS, UNKNOWN_THREAD, UNKNOWN) {}
-
-CallStackProfileParams::CallStackProfileParams(Process process, Thread thread,
- Trigger trigger)
- : CallStackProfileParams(process, thread, trigger, MAY_SHUFFLE) {}
-
-CallStackProfileParams::CallStackProfileParams(Process process, Thread thread,
- Trigger trigger,
- SampleOrderingSpec ordering_spec)
- : process(process), thread(thread), trigger(trigger),
- ordering_spec(ordering_spec) {}
-
-} // namespace metrics
« no previous file with comments | « components/metrics/call_stack_profile_params.h ('k') | components/metrics/child_call_stack_profile_collector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698