Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3b33656c authored by Keisuke Kuroynagi's avatar Keisuke Kuroynagi
Browse files

Add canBeDynamicallyUpdated() in BinaryDictionaryInfo.

Bug: 6669677
Change-Id: I7391641253b99bfcb1f9380ebee2037015e7dc14
parent f3b62900
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -68,6 +68,12 @@ class BinaryDictionaryInfo {
        return &mDictionaryHeader;
    }

    AK_FORCE_INLINE bool isDynamicallyUpdatable() const {
        // TODO: Support dynamic dictionary formats.
        const bool isUpdatableDictionaryFormat = false;
        return mIsUpdatable && isUpdatableDictionaryFormat;
    }

 private:
    DISALLOW_COPY_AND_ASSIGN(BinaryDictionaryInfo);