/* * Copyright (c) 2023 Huawei Device Co., Ltd. * 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. */ #ifndef OHOS_ABILITY_RUNTIME_MEDIA_CONTROL_EXTENSION_H #define OHOS_ABILITY_RUNTIME_MEDIA_CONTROL_EXTENSION_H #include "extension_base.h" namespace OHOS { namespace AbilityRuntime { class MediaControlExtensionContext; class Runtime; /** * @brief Basic ui extension components. */ class MediaControlExtension : public ExtensionBase, public std::enable_shared_from_this { public: MediaControlExtension() = default; virtual ~MediaControlExtension() = default; /** * @brief Create and init context. * * @param record the ui extension record. * @param application the application info. * @param handler the ui extension handler. * @param token the remote token. * @return The created context. */ virtual std::shared_ptr CreateAndInitContext( const std::shared_ptr &record, const std::shared_ptr &application, std::shared_ptr &handler, const sptr &token) override; /** * @brief Init the ui extension. * * @param record the ui extension record. * @param application the application info. * @param handler the ui extension handler. * @param token the remote token. */ virtual void Init(const std::shared_ptr &record, const std::shared_ptr &application, std::shared_ptr &handler, const sptr &token) override; /** * @brief Create ui extension. * * @param runtime The runtime. * @return The ui extension instance. */ static MediaControlExtension* Create(const std::unique_ptr& runtime); }; } // namespace AbilityRuntime } // namespace OHOS #endif // OHOS_ABILITY_RUNTIME_MEDIA_CONTROL_EXTENSION_H