| Index: chrome/browser/android/feature_utilities.cc
|
| diff --git a/chrome/browser/android/feature_utilities.cc b/chrome/browser/android/feature_utilities.cc
|
| index 23111c678d8a819788aecff9e007fa7b2c1cbbcb..41ff28209f5d183c70f1fba90fb869ed545d2c54 100644
|
| --- a/chrome/browser/android/feature_utilities.cc
|
| +++ b/chrome/browser/android/feature_utilities.cc
|
| @@ -6,6 +6,8 @@
|
|
|
| #include "jni/FeatureUtilities_jni.h"
|
|
|
| +#include "sql/connection.h"
|
| +
|
| namespace {
|
| bool document_mode_enabled = false;
|
| bool custom_tab_visible = false;
|
| @@ -39,6 +41,11 @@ static void SetCustomTabVisible(JNIEnv* env,
|
| custom_tab_visible = visible;
|
| }
|
|
|
| +static void SetSqlMmapDisabledByDefault(JNIEnv* env,
|
| + const JavaParamRef<jclass>& clazz) {
|
| + sql::Connection::set_mmap_disabled_by_default();
|
| +}
|
| +
|
| bool RegisterFeatureUtilities(JNIEnv* env) {
|
| return RegisterNativesImpl(env);
|
| }
|
|
|