Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(414)

Unified Diff: chrome/browser/prerender/prerender_history_unittest.cc

Issue 104493005: Update some uses of Value in chrome/browser to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/prerender/prerender_history_unittest.cc
diff --git a/chrome/browser/prerender/prerender_history_unittest.cc b/chrome/browser/prerender/prerender_history_unittest.cc
index 4537d6bda3f1553ffbc239e1c61962f3be73f90b..2da3c4b1e1acc9afe7d1b6176cd20ace0ca4f6f0 100644
--- a/chrome/browser/prerender/prerender_history_unittest.cc
+++ b/chrome/browser/prerender/prerender_history_unittest.cc
@@ -11,7 +11,7 @@ namespace prerender {
namespace {
-bool ListEntryMatches(ListValue* list,
+bool ListEntryMatches(base::ListValue* list,
size_t index,
const char* expected_url,
FinalStatus expected_final_status,
@@ -19,7 +19,7 @@ bool ListEntryMatches(ListValue* list,
const std::string& expected_end_time) {
if (index >= list->GetSize())
return false;
- DictionaryValue* dict = NULL;
+ base::DictionaryValue* dict = NULL;
if (!list->GetDictionary(index, &dict))
return false;
if (dict->size() != 4u)
@@ -48,8 +48,8 @@ bool ListEntryMatches(ListValue* list,
}
TEST(PrerenderHistoryTest, GetAsValue) {
- scoped_ptr<Value> entry_value;
- ListValue* entry_list = NULL;
+ scoped_ptr<base::Value> entry_value;
+ base::ListValue* entry_list = NULL;
// Create a history with only 2 values.
PrerenderHistory history(2);
« no previous file with comments | « chrome/browser/prerender/prerender_history.cc ('k') | chrome/browser/prerender/prerender_local_predictor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698