OLD | NEW |
1 // Copyright (c) 2015 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 "components/tracing/trace_config_file.h" | 5 #include "components/tracing/trace_config_file.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "base/command_line.h" | 11 #include "base/command_line.h" |
12 #include "base/files/file_util.h" | 12 #include "base/files/file_util.h" |
13 #include "base/json/json_reader.h" | 13 #include "base/json/json_reader.h" |
14 #include "base/logging.h" | 14 #include "base/logging.h" |
| 15 #include "base/memory/scoped_ptr.h" |
15 #include "base/memory/singleton.h" | 16 #include "base/memory/singleton.h" |
16 #include "base/values.h" | 17 #include "base/values.h" |
17 #include "build/build_config.h" | 18 #include "build/build_config.h" |
18 #include "components/tracing/tracing_switches.h" | 19 #include "components/tracing/tracing_switches.h" |
19 | 20 |
20 namespace tracing { | 21 namespace tracing { |
21 | 22 |
22 namespace { | 23 namespace { |
23 | 24 |
24 // Maximum trace config file size that will be loaded, in bytes. | 25 // Maximum trace config file size that will be loaded, in bytes. |
(...skipping 112 matching lines...) Loading... |
137 } | 138 } |
138 | 139 |
139 #if !defined(OS_ANDROID) | 140 #if !defined(OS_ANDROID) |
140 base::FilePath TraceConfigFile::GetResultFile() const { | 141 base::FilePath TraceConfigFile::GetResultFile() const { |
141 DCHECK(IsEnabled()); | 142 DCHECK(IsEnabled()); |
142 return result_file_; | 143 return result_file_; |
143 } | 144 } |
144 #endif | 145 #endif |
145 | 146 |
146 } // namespace tracing | 147 } // namespace tracing |
OLD | NEW |