Add canBeDynamicallyUpdated() in BinaryDictionaryInfo.
Bug: 6669677 Change-Id: I7391641253b99bfcb1f9380ebee2037015e7dc14
This commit is contained in:
parent
f3b62900c7
commit
3b33656ce3
1 changed files with 6 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue