Skip to content
Snippets Groups Projects
Commit 3b33656c authored by Keisuke Kuroynagi's avatar Keisuke Kuroynagi
Browse files

Add canBeDynamicallyUpdated() in BinaryDictionaryInfo.

Bug: 6669677
Change-Id: I7391641253b99bfcb1f9380ebee2037015e7dc14
parent f3b62900
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment