diff options
Diffstat (limited to 'java/src/com/android/inputmethod/latin/define')
-rw-r--r-- | java/src/com/android/inputmethod/latin/define/DebugFlags.java (renamed from java/src/com/android/inputmethod/latin/define/ProductionFlag.java) | 21 | ||||
-rw-r--r-- | java/src/com/android/inputmethod/latin/define/ProductionFlags.java | 52 |
2 files changed, 62 insertions, 11 deletions
diff --git a/java/src/com/android/inputmethod/latin/define/ProductionFlag.java b/java/src/com/android/inputmethod/latin/define/DebugFlags.java index dc937fb25..c509e8322 100644 --- a/java/src/com/android/inputmethod/latin/define/ProductionFlag.java +++ b/java/src/com/android/inputmethod/latin/define/DebugFlags.java @@ -1,5 +1,5 @@ /* - * Copyright (C) 2012 The Android Open Source Project + * Copyright (C) 2014 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -16,17 +16,16 @@ package com.android.inputmethod.latin.define; -public final class ProductionFlag { - private ProductionFlag() { - // This class is not publicly instantiable. - } +import android.content.SharedPreferences; - public static final boolean USES_DEVELOPMENT_ONLY_DIAGNOSTICS = false; +public final class DebugFlags { + public static final boolean DEBUG_ENABLED = false; - // When false, USES_DEVELOPMENT_ONLY_DIAGNOSTICS_DEBUG suggests that all guarded - // class-private DEBUG flags should be false, and any privacy controls should be enforced. - // USES_DEVELOPMENT_ONLY_DIAGNOSTICS must be false for any production build. - public static final boolean USES_DEVELOPMENT_ONLY_DIAGNOSTICS_DEBUG = false; + private DebugFlags() { + // This class is not publicly instantiable. + } - public static final boolean IS_HARDWARE_KEYBOARD_SUPPORTED = false; + @SuppressWarnings("unused") + public static void init(final SharedPreferences prefs) { + } } diff --git a/java/src/com/android/inputmethod/latin/define/ProductionFlags.java b/java/src/com/android/inputmethod/latin/define/ProductionFlags.java new file mode 100644 index 000000000..d385cf840 --- /dev/null +++ b/java/src/com/android/inputmethod/latin/define/ProductionFlags.java @@ -0,0 +1,52 @@ +/* + * Copyright (C) 2012 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.inputmethod.latin.define; + +public final class ProductionFlags { + private ProductionFlags() { + // This class is not publicly instantiable. + } + + public static final boolean IS_HARDWARE_KEYBOARD_SUPPORTED = false; + + /** + * When true, enable {@link InputMethodService#onUpdateCursorAnchorInfo} callback via + * {@link InputConnection#requestCursorAnchorInfo}. This flag has no effect in API Level 20 + * and prior. In general, this callback provides more detailed positional information, + * even though an explicit support is required by the editor. + */ + public static final boolean ENABLE_CURSOR_ANCHOR_INFO_CALLBACK = false; + + /** + * When true, enable {@link InputMethodService#onUpdateCursor} callback via + * {@link InputConnection#requestCursorAnchorInfo}. Although this callback has been available + * since API Level 3, the callback has never been used until API Level 20. Thus it may or may + * not work well as expected. Should rely on {@link InputMethodService#onUpdateCursorAnchorInfo} + * whenever possible since it is supposed to be more reliable and accurate. + */ + public static final boolean ENABLE_CURSOR_RECT_CALLBACK = false; + + /** + * Include all suggestions from all dictionaries in {@link SuggestedWords#mRawSuggestions}. + */ + public static final boolean INCLUDE_RAW_SUGGESTIONS = false; + + /** + * When false, the metrics logging is not yet ready to be enabled. + */ + public static final boolean IS_METRICS_LOGGING_SUPPORTED = false; +} |