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

Unified Diff: sync/engine/traffic_recorder.h

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.h
diff --git a/sync/engine/traffic_recorder.h b/sync/engine/traffic_recorder.h
index 65e652e4731d425c2c17b47de4046d0f1101dfaa..94639ab9a6bd3aaca3cb1e34a73557fed5deedd7 100644
--- a/sync/engine/traffic_recorder.h
+++ b/sync/engine/traffic_recorder.h
@@ -45,7 +45,7 @@ class SYNC_EXPORT_PRIVATE TrafficRecorder {
base::Time time);
TrafficRecord();
~TrafficRecord();
- DictionaryValue* ToValue() const;
+ base::DictionaryValue* ToValue() const;
// Time of record creation.
base::Time timestamp;
@@ -57,7 +57,7 @@ class SYNC_EXPORT_PRIVATE TrafficRecorder {
void RecordClientToServerMessage(const sync_pb::ClientToServerMessage& msg);
void RecordClientToServerResponse(
const sync_pb::ClientToServerResponse& response);
- ListValue* ToValue() const;
+ base::ListValue* ToValue() const;
const std::deque<TrafficRecord>& records() {
return records_;

Powered by Google App Engine
This is Rietveld 408576698