!7390 修复文件蓝黄差异

Merge pull request !7390 from francis/master
This commit is contained in:
openharmony_ci 2024-07-12 11:15:33 +00:00 committed by Gitee
commit b0b9b90a2f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F
3 changed files with 7 additions and 2 deletions

View File

@ -1705,7 +1705,7 @@ public:
*/
virtual WMError SetWindowLimits(WindowLimits& windowLimits) { return WMError::WM_ERROR_DEVICE_NOT_SUPPORT; }
/**
/*
* @brief Register listener, if timeout(seconds) pass with no interaction, the listener will be executed.
*
* @param listener IWindowNoInteractionListenerSptr.

View File

@ -225,9 +225,10 @@ public:
virtual WmErrorCode KeepKeyboardOnFocus(bool keepKeyboardFlag) override;
virtual WMError SetSingleFrameComposerEnabled(bool enable) override;
virtual WMError SetLandscapeMultiWindow(bool isLandscapeMultiWindow) override;
virtual void SetUiDvsyncSwitch(bool dvsyncSwitch) override;
virtual WMError UpdateSystemBarProperty(bool status);
virtual WMError SetImmersiveModeEnabledState(bool enable) override;
virtual bool GetImmersiveModeEnabledState() const override;
virtual WMError UpdateSystemBarProperty(bool status);
private:
static sptr<Window> FindWindowById(uint32_t windowId);

View File

@ -1128,6 +1128,10 @@ WMError WindowImpl::SetLandscapeMultiWindow(bool isLandscapeMultiWindow)
return WMError::WM_OK;
}
void WindowImpl::SetUiDvsyncSwitch(bool dvsyncSwitch)
{
}
WMError WindowImpl::SetImmersiveModeEnabledState(bool enable)
{
return WMError::WM_OK;