| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "sync/js/js_test_util.h" | 5 #include "sync/js/js_test_util.h" |
| 6 | 6 |
| 7 #include "base/basictypes.h" | 7 #include "base/basictypes.h" |
| 8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
| 9 #include "sync/js/js_arg_list.h" | 9 #include "sync/js/js_arg_list.h" |
| 10 #include "sync/js/js_event_details.h" | 10 #include "sync/js/js_event_details.h" |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 DISALLOW_COPY_AND_ASSIGN(HasDetailsMatcher); | 81 DISALLOW_COPY_AND_ASSIGN(HasDetailsMatcher); |
| 82 }; | 82 }; |
| 83 | 83 |
| 84 } // namespace | 84 } // namespace |
| 85 | 85 |
| 86 ::testing::Matcher<const JsArgList&> HasArgs(const JsArgList& expected_args) { | 86 ::testing::Matcher<const JsArgList&> HasArgs(const JsArgList& expected_args) { |
| 87 return ::testing::MakeMatcher(new HasArgsMatcher(expected_args)); | 87 return ::testing::MakeMatcher(new HasArgsMatcher(expected_args)); |
| 88 } | 88 } |
| 89 | 89 |
| 90 ::testing::Matcher<const JsArgList&> HasArgsAsList( | 90 ::testing::Matcher<const JsArgList&> HasArgsAsList( |
| 91 const ListValue& expected_args) { | 91 const base::ListValue& expected_args) { |
| 92 scoped_ptr<ListValue> expected_args_copy(expected_args.DeepCopy()); | 92 scoped_ptr<base::ListValue> expected_args_copy(expected_args.DeepCopy()); |
| 93 return HasArgs(JsArgList(expected_args_copy.get())); | 93 return HasArgs(JsArgList(expected_args_copy.get())); |
| 94 } | 94 } |
| 95 | 95 |
| 96 ::testing::Matcher<const JsEventDetails&> HasDetails( | 96 ::testing::Matcher<const JsEventDetails&> HasDetails( |
| 97 const JsEventDetails& expected_details) { | 97 const JsEventDetails& expected_details) { |
| 98 return ::testing::MakeMatcher(new HasDetailsMatcher(expected_details)); | 98 return ::testing::MakeMatcher(new HasDetailsMatcher(expected_details)); |
| 99 } | 99 } |
| 100 | 100 |
| 101 ::testing::Matcher<const JsEventDetails&> HasDetailsAsDictionary( | 101 ::testing::Matcher<const JsEventDetails&> HasDetailsAsDictionary( |
| 102 const DictionaryValue& expected_details) { | 102 const base::DictionaryValue& expected_details) { |
| 103 scoped_ptr<DictionaryValue> expected_details_copy( | 103 scoped_ptr<base::DictionaryValue> expected_details_copy( |
| 104 expected_details.DeepCopy()); | 104 expected_details.DeepCopy()); |
| 105 return HasDetails(JsEventDetails(expected_details_copy.get())); | 105 return HasDetails(JsEventDetails(expected_details_copy.get())); |
| 106 } | 106 } |
| 107 | 107 |
| 108 MockJsBackend::MockJsBackend() {} | 108 MockJsBackend::MockJsBackend() {} |
| 109 | 109 |
| 110 MockJsBackend::~MockJsBackend() {} | 110 MockJsBackend::~MockJsBackend() {} |
| 111 | 111 |
| 112 WeakHandle<JsBackend> MockJsBackend::AsWeakHandle() { | 112 WeakHandle<JsBackend> MockJsBackend::AsWeakHandle() { |
| 113 return MakeWeakHandle(AsWeakPtr()); | 113 return MakeWeakHandle(AsWeakPtr()); |
| (...skipping 14 matching lines...) Expand all Loading... |
| 128 MockJsReplyHandler::MockJsReplyHandler() {} | 128 MockJsReplyHandler::MockJsReplyHandler() {} |
| 129 | 129 |
| 130 MockJsReplyHandler::~MockJsReplyHandler() {} | 130 MockJsReplyHandler::~MockJsReplyHandler() {} |
| 131 | 131 |
| 132 WeakHandle<JsReplyHandler> MockJsReplyHandler::AsWeakHandle() { | 132 WeakHandle<JsReplyHandler> MockJsReplyHandler::AsWeakHandle() { |
| 133 return MakeWeakHandle(AsWeakPtr()); | 133 return MakeWeakHandle(AsWeakPtr()); |
| 134 } | 134 } |
| 135 | 135 |
| 136 } // namespace syncer | 136 } // namespace syncer |
| 137 | 137 |
| OLD | NEW |