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

Unified Diff: sync/js/js_arg_list.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/internal_api/sync_manager_impl.h ('k') | sync/js/js_arg_list.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/js/js_arg_list.h
diff --git a/sync/js/js_arg_list.h b/sync/js/js_arg_list.h
index 72793e925362aae14f8a72646fdfc29183f060a5..34a0cf6966957f68664afef2a6614a93fd1969db 100644
--- a/sync/js/js_arg_list.h
+++ b/sync/js/js_arg_list.h
@@ -23,18 +23,18 @@ class SYNC_EXPORT JsArgList {
JsArgList();
// Takes over the data in |args|, leaving |args| empty.
- explicit JsArgList(ListValue* args);
+ explicit JsArgList(base::ListValue* args);
~JsArgList();
- const ListValue& Get() const;
+ const base::ListValue& Get() const;
std::string ToString() const;
// Copy constructor and assignment operator welcome.
private:
- typedef Immutable<ListValue, HasSwapMemFnByPtr<ListValue> >
+ typedef Immutable<base::ListValue, HasSwapMemFnByPtr<base::ListValue> >
ImmutableListValue;
ImmutableListValue args_;
};
« no previous file with comments | « sync/internal_api/sync_manager_impl.h ('k') | sync/js/js_arg_list.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698