diff options
Diffstat (limited to 'content/renderer/stats_collection_controller.cc')
-rw-r--r-- | content/renderer/stats_collection_controller.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/renderer/stats_collection_controller.cc b/content/renderer/stats_collection_controller.cc index 80ff096..829b32c 100644 --- a/content/renderer/stats_collection_controller.cc +++ b/content/renderer/stats_collection_controller.cc @@ -53,10 +53,10 @@ void ConvertLoadTimeToJSON( const base::TimeTicks& load_start_time, const base::TimeTicks& load_stop_time, std::string *result) { - DictionaryValue item; + base::DictionaryValue item; if (load_start_time.is_null()) { - item.Set("load_start_ms", Value::CreateNullValue()); + item.Set("load_start_ms", base::Value::CreateNullValue()); } else { // This code relies on an implementation detail of TimeTicks::Now() - that // its return value happens to coincide with the system uptime value in @@ -65,7 +65,7 @@ void ConvertLoadTimeToJSON( item.SetDouble("load_start_ms", load_start_time.ToInternalValue() / 1000); } if (load_stop_time.is_null() || load_stop_time.is_null()) { - item.Set("load_duration_ms", Value::CreateNullValue()); + item.Set("load_duration_ms", base::Value::CreateNullValue()); } else { item.SetDouble("load_duration_ms", (load_stop_time - load_start_time).InMilliseconds()); |