Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
...@@ -68,6 +68,12 @@ class BinaryDictionaryInfo { ...@@ -68,6 +68,12 @@ class BinaryDictionaryInfo {
return &mDictionaryHeader; return &mDictionaryHeader;
} }
AK_FORCE_INLINE bool isDynamicallyUpdatable() const {
// TODO: Support dynamic dictionary formats.
const bool isUpdatableDictionaryFormat = false;
return mIsUpdatable && isUpdatableDictionaryFormat;
}
private: private:
DISALLOW_COPY_AND_ASSIGN(BinaryDictionaryInfo); 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