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_; |
}; |