| // Copyright 2017 The Cobalt Authors. All Rights Reserved. |
| // |
| // Licensed under the Apache License, Version 2.0 (the "License"); |
| // you may not use this file except in compliance with the License. |
| // You may obtain a copy of the License at |
| // |
| // http://www.apache.org/licenses/LICENSE-2.0 |
| // |
| // Unless required by applicable law or agreed to in writing, software |
| // distributed under the License is distributed on an "AS IS" BASIS, |
| // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| // See the License for the specific language governing permissions and |
| // limitations under the License. |
| |
| #include <memory> |
| |
| #include "cobalt/base/polymorphic_downcast.h" |
| #include "cobalt/script/script_value.h" |
| |
| #ifndef COBALT_SCRIPT_TESTING_FAKE_SCRIPT_VALUE_H_ |
| #define COBALT_SCRIPT_TESTING_FAKE_SCRIPT_VALUE_H_ |
| |
| namespace cobalt { |
| namespace script { |
| namespace testing { |
| |
| template <class T> |
| class FakeScriptValue : public cobalt::script::ScriptValue<T> { |
| public: |
| typedef cobalt::script::ScriptValue<T> BaseClass; |
| |
| explicit FakeScriptValue(T* listener) : value_(listener) {} |
| |
| bool EqualTo(const BaseClass& other) const override { |
| const FakeScriptValue* other_script_object = |
| base::polymorphic_downcast<const FakeScriptValue*>(&other); |
| return value_ == other_script_object->value_; |
| } |
| |
| void RegisterOwner(script::Wrappable*) override {} |
| void DeregisterOwner(script::Wrappable*) override {} |
| void PreventGarbageCollection() override {} |
| void AllowGarbageCollection() override {} |
| T* GetValue() override { return value_; } |
| const T* GetValue() const override { return value_; } |
| std::unique_ptr<BaseClass> MakeCopy() const override { |
| return std::unique_ptr<BaseClass>(new FakeScriptValue(value_)); |
| } |
| |
| private: |
| T* value_; |
| }; |
| |
| } // namespace testing |
| } // namespace script |
| } // namespace cobalt |
| |
| #endif // COBALT_SCRIPT_TESTING_FAKE_SCRIPT_VALUE_H_ |