diff options
Diffstat (limited to 'sync/js/js_arg_list.h')
-rw-r--r-- | sync/js/js_arg_list.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sync/js/js_arg_list.h b/sync/js/js_arg_list.h index 72793e9..34a0cf6 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_; }; |