| Index: chrome/browser/prerender/prerender_history.cc
|
| diff --git a/chrome/browser/prerender/prerender_history.cc b/chrome/browser/prerender/prerender_history.cc
|
| index 641ce5dbc1b196bf27c68abf73529529a2aa86c1..864047986ee016426b5f38225bae79e6bbbaa5fa 100644
|
| --- a/chrome/browser/prerender/prerender_history.cc
|
| +++ b/chrome/browser/prerender/prerender_history.cc
|
| @@ -29,15 +29,15 @@ void PrerenderHistory::Clear() {
|
| entries_.clear();
|
| }
|
|
|
| -Value* PrerenderHistory::GetEntriesAsValue() const {
|
| - ListValue* return_list = new ListValue();
|
| +base::Value* PrerenderHistory::GetEntriesAsValue() const {
|
| + base::ListValue* return_list = new base::ListValue();
|
| // Javascript needs times in terms of milliseconds since Jan 1, 1970.
|
| base::Time epoch_start = base::Time::UnixEpoch();
|
| for (std::list<Entry>::const_reverse_iterator it = entries_.rbegin();
|
| it != entries_.rend();
|
| ++it) {
|
| const Entry& entry = *it;
|
| - DictionaryValue* entry_dict = new DictionaryValue();
|
| + base::DictionaryValue* entry_dict = new base::DictionaryValue();
|
| entry_dict->SetString("url", entry.url.spec());
|
| entry_dict->SetString("final_status",
|
| NameFromFinalStatus(entry.final_status));
|
|
|