OLD | NEW |
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 #include "chrome/browser/tracing/navigation_tracing.h" | 5 #include "chrome/browser/tracing/navigation_tracing.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/bind.h" | 9 #include "base/bind.h" |
10 #include "base/command_line.h" | 10 #include "base/command_line.h" |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
60 | 60 |
61 base::DictionaryValue dict; | 61 base::DictionaryValue dict; |
62 dict.SetString("mode", "REACTIVE_TRACING_MODE"); | 62 dict.SetString("mode", "REACTIVE_TRACING_MODE"); |
63 | 63 |
64 std::unique_ptr<base::ListValue> rules_list(new base::ListValue()); | 64 std::unique_ptr<base::ListValue> rules_list(new base::ListValue()); |
65 { | 65 { |
66 std::unique_ptr<base::DictionaryValue> rules_dict( | 66 std::unique_ptr<base::DictionaryValue> rules_dict( |
67 new base::DictionaryValue()); | 67 new base::DictionaryValue()); |
68 rules_dict->SetString("rule", "TRACE_ON_NAVIGATION_UNTIL_TRIGGER_OR_FULL"); | 68 rules_dict->SetString("rule", "TRACE_ON_NAVIGATION_UNTIL_TRIGGER_OR_FULL"); |
69 rules_dict->SetString("trigger_name", kNavigationTracingConfig); | 69 rules_dict->SetString("trigger_name", kNavigationTracingConfig); |
| 70 rules_dict->SetBoolean("stop_tracing_on_repeated_reactive", true); |
70 rules_dict->SetString("category", "BENCHMARK_DEEP"); | 71 rules_dict->SetString("category", "BENCHMARK_DEEP"); |
71 rules_list->Append(std::move(rules_dict)); | 72 rules_list->Append(std::move(rules_dict)); |
72 } | 73 } |
73 { | 74 { |
74 std::unique_ptr<base::DictionaryValue> rules_dict( | 75 std::unique_ptr<base::DictionaryValue> rules_dict( |
75 new base::DictionaryValue()); | 76 new base::DictionaryValue()); |
76 rules_dict->SetString("rule", | 77 rules_dict->SetString("rule", |
77 "MONITOR_AND_DUMP_WHEN_SPECIFIC_HISTOGRAM_AND_VALUE"); | 78 "MONITOR_AND_DUMP_WHEN_SPECIFIC_HISTOGRAM_AND_VALUE"); |
78 rules_dict->SetString("category", "BENCHMARK_MEMORY_HEAVY"); | 79 rules_dict->SetString("category", "BENCHMARK_MEMORY_HEAVY"); |
79 rules_dict->SetString("histogram_name", "V8.GCLowMemoryNotification"); | 80 rules_dict->SetString("histogram_name", "V8.GCLowMemoryNotification"); |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 content::BackgroundTracingManager::GetInstance()->TriggerNamedEvent( | 120 content::BackgroundTracingManager::GetInstance()->TriggerNamedEvent( |
120 navigation_handle, | 121 navigation_handle, |
121 content::BackgroundTracingManager::StartedFinalizingCallback()); | 122 content::BackgroundTracingManager::StartedFinalizingCallback()); |
122 } | 123 } |
123 } | 124 } |
124 | 125 |
125 content::BackgroundTracingManager::TriggerHandle | 126 content::BackgroundTracingManager::TriggerHandle |
126 NavigationTracingObserver::navigation_handle = -1; | 127 NavigationTracingObserver::navigation_handle = -1; |
127 | 128 |
128 } // namespace tracing | 129 } // namespace tracing |
OLD | NEW |