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

Unified Diff: sync/js/js_event_details.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 | « sync/js/js_arg_list.cc ('k') | sync/js/js_event_details.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/js/js_event_details.h
diff --git a/sync/js/js_event_details.h b/sync/js/js_event_details.h
index 9ca36db46b3f29586874158994a66723aee0c2ef..ae970cceb886fbc01b509a860e96c163aecf1ca0 100644
--- a/sync/js/js_event_details.h
+++ b/sync/js/js_event_details.h
@@ -23,18 +23,19 @@ class SYNC_EXPORT JsEventDetails {
JsEventDetails();
// Takes over the data in |details|, leaving |details| empty.
- explicit JsEventDetails(DictionaryValue* details);
+ explicit JsEventDetails(base::DictionaryValue* details);
~JsEventDetails();
- const DictionaryValue& Get() const;
+ const base::DictionaryValue& Get() const;
std::string ToString() const;
// Copy constructor and assignment operator welcome.
private:
- typedef Immutable<DictionaryValue, HasSwapMemFnByPtr<DictionaryValue> >
+ typedef Immutable<base::DictionaryValue,
+ HasSwapMemFnByPtr<base::DictionaryValue> >
ImmutableDictionaryValue;
ImmutableDictionaryValue details_;
« no previous file with comments | « sync/js/js_arg_list.cc ('k') | sync/js/js_event_details.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698