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

Unified Diff: sync/js/js_test_util.cc

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_event_details_unittest.cc ('k') | sync/notifier/object_id_invalidation_map.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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()));
}
« no previous file with comments | « sync/js/js_event_details_unittest.cc ('k') | sync/notifier/object_id_invalidation_map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698