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

Unified Diff: media/base/media_log_event.h

Issue 17034006: Add base namespace to more values in sync and elsewhere. (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
« no previous file with comments | « jingle/glue/utils.cc ('k') | net/base/net_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/media_log_event.h
diff --git a/media/base/media_log_event.h b/media/base/media_log_event.h
index f831fe51bb245309eba0297678b7ee36cdd6743d..917683236b9b55db45134f5231138555a42df108 100644
--- a/media/base/media_log_event.h
+++ b/media/base/media_log_event.h
@@ -20,7 +20,7 @@ struct MediaLogEvent {
MediaLogEvent& operator=(const MediaLogEvent& event) {
id = event.id;
type = event.type;
- scoped_ptr<DictionaryValue> event_copy(event.params.DeepCopy());
+ scoped_ptr<base::DictionaryValue> event_copy(event.params.DeepCopy());
params.Swap(event_copy.get());
time = event.time;
return *this;
« no previous file with comments | « jingle/glue/utils.cc ('k') | net/base/net_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698