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

Commit 81c5c3ce authored by Keisuke Kuroynagi's avatar Keisuke Kuroynagi Committed by Android (Google) Code Review
Browse files

Merge "Add canBeDynamicallyUpdated() in BinaryDictionaryInfo."

parents 8bc0b513 3b33656c
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);