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/json/json_writer.h" | |
15 #include "base/logging.h" | 14 #include "base/logging.h" |
16 #include "base/memory/singleton.h" | 15 #include "base/memory/singleton.h" |
17 #include "base/values.h" | 16 #include "base/values.h" |
18 #include "build/build_config.h" | 17 #include "build/build_config.h" |
19 #include "components/tracing/tracing_switches.h" | 18 #include "components/tracing/tracing_switches.h" |
20 | 19 |
21 namespace tracing { | 20 namespace tracing { |
22 | 21 |
23 namespace { | 22 namespace { |
24 | 23 |
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 if (!value || !value->IsType(base::Value::TYPE_DICTIONARY)) | 100 if (!value || !value->IsType(base::Value::TYPE_DICTIONARY)) |
102 return false; | 101 return false; |
103 | 102 |
104 scoped_ptr<base::DictionaryValue> dict( | 103 scoped_ptr<base::DictionaryValue> dict( |
105 static_cast<base::DictionaryValue*>(value.release())); | 104 static_cast<base::DictionaryValue*>(value.release())); |
106 | 105 |
107 base::DictionaryValue* trace_config_dict = NULL; | 106 base::DictionaryValue* trace_config_dict = NULL; |
108 if (!dict->GetDictionary(kTraceConfigParam, &trace_config_dict)) | 107 if (!dict->GetDictionary(kTraceConfigParam, &trace_config_dict)) |
109 return false; | 108 return false; |
110 | 109 |
111 std::string trace_config_str; | 110 trace_config_ = base::trace_event::TraceConfig(*trace_config_dict); |
112 base::JSONWriter::Write(*trace_config_dict, &trace_config_str); | |
113 trace_config_ = base::trace_event::TraceConfig(trace_config_str); | |
114 | 111 |
115 if (!dict->GetInteger(kStartupDurationParam, &startup_duration_)) | 112 if (!dict->GetInteger(kStartupDurationParam, &startup_duration_)) |
116 startup_duration_ = 0; | 113 startup_duration_ = 0; |
117 | 114 |
118 if (startup_duration_ < 0) | 115 if (startup_duration_ < 0) |
119 startup_duration_ = 0; | 116 startup_duration_ = 0; |
120 | 117 |
121 base::FilePath::StringType result_file_str; | 118 base::FilePath::StringType result_file_str; |
122 if (dict->GetString(kResultFileParam, &result_file_str)) | 119 if (dict->GetString(kResultFileParam, &result_file_str)) |
123 result_file_ = base::FilePath(result_file_str); | 120 result_file_ = base::FilePath(result_file_str); |
(...skipping 16 matching lines...) Expand all Loading... |
140 } | 137 } |
141 | 138 |
142 #if !defined(OS_ANDROID) | 139 #if !defined(OS_ANDROID) |
143 base::FilePath TraceConfigFile::GetResultFile() const { | 140 base::FilePath TraceConfigFile::GetResultFile() const { |
144 DCHECK(IsEnabled()); | 141 DCHECK(IsEnabled()); |
145 return result_file_; | 142 return result_file_; |
146 } | 143 } |
147 #endif | 144 #endif |
148 | 145 |
149 } // namespace tracing | 146 } // namespace tracing |
OLD | NEW |