From 66ef9e8365bd9b30333305d6b9db8ae5cc468f6e Mon Sep 17 00:00:00 2001 From: gecheng Date: Wed, 13 Aug 2025 17:43:40 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=A3=E5=86=B3=E9=BB=84=E8=93=9D=E5=B7=AE?= =?UTF-8?q?=E5=BC=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: gecheng --- .../framework/include/account/account_delegate.h | 2 +- .../framework/include/changeevent/remote_change_event.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/services/distributeddataservice/framework/include/account/account_delegate.h b/services/distributeddataservice/framework/include/account/account_delegate.h index 5636131fd..c2ed384fe 100644 --- a/services/distributeddataservice/framework/include/account/account_delegate.h +++ b/services/distributeddataservice/framework/include/account/account_delegate.h @@ -67,8 +67,8 @@ public: API_EXPORT virtual void UnsubscribeAccountEvent() = 0; API_EXPORT virtual bool QueryUsers(std::vector &users) = 0; API_EXPORT virtual bool QueryForegroundUsers(std::vector &users) = 0; - API_EXPORT virtual bool IsLoginAccount() = 0; API_EXPORT virtual bool QueryForegroundUserId(int &foregroundUserId) = 0; + API_EXPORT virtual bool IsLoginAccount() = 0; API_EXPORT virtual bool IsVerified(int userId) = 0; API_EXPORT virtual bool RegisterHashFunc(HashFunc hash) = 0; API_EXPORT virtual bool IsDeactivating(int userId) = 0; diff --git a/services/distributeddataservice/framework/include/changeevent/remote_change_event.h b/services/distributeddataservice/framework/include/changeevent/remote_change_event.h index bf58f4328..aa6ca90dc 100644 --- a/services/distributeddataservice/framework/include/changeevent/remote_change_event.h +++ b/services/distributeddataservice/framework/include/changeevent/remote_change_event.h @@ -33,8 +33,8 @@ public: std::string storeId; std::string deviceId; std::string bundleName; - int changeType = 0; // 0 means CLOUD_DATA_CHANGE std::vector tables; + int changeType = 0; // 0 means CLOUD_DATA_CHANGE }; RemoteChangeEvent(int32_t evtId, DataInfo&& info); -- Gitee