| Index: sync/js/js_test_util.cc
|
| diff --git a/sync/js/js_test_util.cc b/sync/js/js_test_util.cc
|
| index 6d9679f2602d03366d771f6c8c5e3de6d9df7599..331efccbb1ebdea19496a8b22769eb0b81595e46 100644
|
| --- a/sync/js/js_test_util.cc
|
| +++ b/sync/js/js_test_util.cc
|
| @@ -88,8 +88,8 @@ class HasDetailsMatcher
|
| }
|
|
|
| ::testing::Matcher<const JsArgList&> HasArgsAsList(
|
| - const ListValue& expected_args) {
|
| - scoped_ptr<ListValue> expected_args_copy(expected_args.DeepCopy());
|
| + const base::ListValue& expected_args) {
|
| + scoped_ptr<base::ListValue> expected_args_copy(expected_args.DeepCopy());
|
| return HasArgs(JsArgList(expected_args_copy.get()));
|
| }
|
|
|
| @@ -99,8 +99,8 @@ class HasDetailsMatcher
|
| }
|
|
|
| ::testing::Matcher<const JsEventDetails&> HasDetailsAsDictionary(
|
| - const DictionaryValue& expected_details) {
|
| - scoped_ptr<DictionaryValue> expected_details_copy(
|
| + const base::DictionaryValue& expected_details) {
|
| + scoped_ptr<base::DictionaryValue> expected_details_copy(
|
| expected_details.DeepCopy());
|
| return HasDetails(JsEventDetails(expected_details_copy.get()));
|
| }
|
|
|