mirror of
https://gitee.com/openharmony/window_window_manager
synced 2024-11-23 06:50:40 +00:00
fix_format
Signed-off-by: wanganjie <wanganjie1@huawei.com>
This commit is contained in:
parent
daeb74cd74
commit
1d1baeb3b3
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
||||
* Copyright (c) 2023-2024 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
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* Copyright (c) 2023 Huawei Device Co., Ltd.
|
||||
* Copyright (c) 2023-2024 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
|
||||
@ -16,7 +16,6 @@
|
||||
#ifndef WINDOW_MANAGER_MODAL_SYSTEM_UI_EXTENSION_H
|
||||
#define WINDOW_MANAGER_MODAL_SYSTEM_UI_EXTENSION_H
|
||||
|
||||
#include <mutex>
|
||||
#include <string>
|
||||
#include <element_name.h>
|
||||
#include <ability_connect_callback_interface.h>
|
||||
@ -35,7 +34,7 @@ public:
|
||||
private:
|
||||
class DialogAbilityConnection : public OHOS::AAFwk::AbilityConnectionStub {
|
||||
public:
|
||||
explicit DialogAbilityConnection(const AAFwk::Want& want) : want_(want) {};
|
||||
explicit DialogAbilityConnection(const AAFwk::Want& want) : want_(want) {}
|
||||
virtual ~DialogAbilityConnection() = default;
|
||||
|
||||
void OnAbilityConnectDone(const AppExecFwk::ElementName& element, const sptr<IRemoteObject>& remoteObject,
|
||||
|
@ -9015,8 +9015,8 @@ void SceneSessionManager::HideNonSecureFloatingWindows()
|
||||
for (const auto& [persistentId, session] : nonSystemFloatSceneSessionMap_) {
|
||||
if (session && session->GetWindowType() == WindowType::WINDOW_TYPE_FLOAT) {
|
||||
session->NotifyForceHideChange(shouldHide);
|
||||
TLOGI(WmsLogTag::WMS_UIEXT, "HideNonSecureWindows name=%{public}s, persistentId=%{public}d, "
|
||||
"shouldHide=%{public}u", session->GetWindowName().c_str(), persistentId, shouldHide);
|
||||
TLOGI(WmsLogTag::WMS_UIEXT, "name=%{public}s, persistentId=%{public}d, shouldHide=%{public}u",
|
||||
session->GetWindowName().c_str(), persistentId, shouldHide);
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -9042,8 +9042,8 @@ void SceneSessionManager::HideNonSecureSubWindows(const sptr<SceneSession>& scen
|
||||
|
||||
if (SessionHelper::IsNonSecureToUIExtension(property->GetWindowType()) && !session->IsSystemSpecificSession()) {
|
||||
session->NotifyForceHideChange(shouldHide);
|
||||
TLOGI(WmsLogTag::WMS_UIEXT, "HideNonSecureWindows name=%{public}s, persistentId=%{public}d, "
|
||||
"shouldHide=%{public}u", session->GetWindowName().c_str(), session->GetPersistentId(), shouldHide);
|
||||
TLOGI(WmsLogTag::WMS_UIEXT, "name=%{public}s, persistentId=%{public}d, shouldHide=%{public}u",
|
||||
session->GetWindowName().c_str(), session->GetPersistentId(), shouldHide);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user