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

Commit d2bdfc57 authored by Keisuke Kuroynagi's avatar Keisuke Kuroynagi Committed by Android Git Automerger
Browse files

am 81c5c3ce: Merge "Add canBeDynamicallyUpdated() in BinaryDictionaryInfo."

* commit '81c5c3ce':
  Add canBeDynamicallyUpdated() in BinaryDictionaryInfo.
parents 162f1f89 81c5c3ce
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);