| Index: chrome/browser/net/chrome_network_delegate.cc
|
| diff --git a/chrome/browser/net/chrome_network_delegate.cc b/chrome/browser/net/chrome_network_delegate.cc
|
| index 57e15d6d1f9af3b70f02457b4323c0d040f407a0..c4f9ec9ecb3158f00fc97058560f9a765864cd26 100644
|
| --- a/chrome/browser/net/chrome_network_delegate.cc
|
| +++ b/chrome/browser/net/chrome_network_delegate.cc
|
| @@ -410,13 +410,13 @@ void ChromeNetworkDelegate::AllowAccessToAllFiles() {
|
| }
|
|
|
| // static
|
| -Value* ChromeNetworkDelegate::HistoricNetworkStatsInfoToValue() {
|
| +base::Value* ChromeNetworkDelegate::HistoricNetworkStatsInfoToValue() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
| PrefService* prefs = g_browser_process->local_state();
|
| int64 total_received = prefs->GetInt64(prefs::kHttpReceivedContentLength);
|
| int64 total_original = prefs->GetInt64(prefs::kHttpOriginalContentLength);
|
|
|
| - DictionaryValue* dict = new DictionaryValue();
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| // Use strings to avoid overflow. base::Value only supports 32-bit integers.
|
| dict->SetString("historic_received_content_length",
|
| base::Int64ToString(total_received));
|
| @@ -425,8 +425,8 @@ Value* ChromeNetworkDelegate::HistoricNetworkStatsInfoToValue() {
|
| return dict;
|
| }
|
|
|
| -Value* ChromeNetworkDelegate::SessionNetworkStatsInfoToValue() const {
|
| - DictionaryValue* dict = new DictionaryValue();
|
| +base::Value* ChromeNetworkDelegate::SessionNetworkStatsInfoToValue() const {
|
| + base::DictionaryValue* dict = new base::DictionaryValue();
|
| // Use strings to avoid overflow. base::Value only supports 32-bit integers.
|
| dict->SetString("session_received_content_length",
|
| base::Int64ToString(received_content_length_));
|
|
|