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

Unified Diff: sync/engine/traffic_recorder_unittest.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months 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: sync/engine/traffic_recorder_unittest.cc
diff --git a/sync/engine/traffic_recorder_unittest.cc b/sync/engine/traffic_recorder_unittest.cc
index 19d682ae7a8bde08f83aaaa32ffa3b4c4ce61e07..4928604a7b36eaddb2e5685ceb047e93800e6830 100644
--- a/sync/engine/traffic_recorder_unittest.cc
+++ b/sync/engine/traffic_recorder_unittest.cc
@@ -109,10 +109,10 @@ TEST(TrafficRecorderTest, ToValueTimestampTest) {
recorder.set_time(sample_time);
recorder.RecordClientToServerResponse(response);
- scoped_ptr<ListValue> value;
+ scoped_ptr<base::ListValue> value;
value.reset(recorder.ToValue());
- DictionaryValue* record_value;
+ base::DictionaryValue* record_value;
std::string time_str;
ASSERT_TRUE(value->GetDictionary(0, &record_value));

Powered by Google App Engine
This is Rietveld 408576698