prefs: Disable Android JNI

This commit is contained in:
klzgrad 2022-05-04 14:58:47 +08:00
parent ade9b19d19
commit 07db5165d3
3 changed files with 7 additions and 7 deletions

View File

@ -58,7 +58,7 @@ component("prefs") {
public_deps = [ "//base" ]
if (is_android) {
if (false) {
sources += [
"android/pref_service_android.cc",
"android/pref_service_android.h",

View File

@ -33,7 +33,7 @@
#include "components/prefs/value_map_pref_store.h"
#endif
#if BUILDFLAG(IS_ANDROID)
#if 0
#include "components/prefs/android/pref_service_android.h"
#endif
@ -518,7 +518,7 @@ void PrefService::RemovePrefObserverAllPrefs(PrefObserver* obs) {
pref_notifier_->RemovePrefObserverAllPrefs(obs);
}
#if BUILDFLAG(IS_ANDROID)
#if 0
base::android::ScopedJavaLocalRef<jobject> PrefService::GetJavaObject() {
if (!pref_service_android_) {
pref_service_android_ = std::make_unique<PrefServiceAndroid>(this);

View File

@ -32,7 +32,7 @@
#include "components/prefs/pref_value_store.h"
#include "components/prefs/prefs_export.h"
#if BUILDFLAG(IS_ANDROID)
#if 0
#include "base/android/scoped_java_ref.h"
#endif
@ -41,7 +41,7 @@ class PrefNotifierImpl;
class PrefObserver;
class PrefRegistry;
class PrefStore;
#if BUILDFLAG(IS_ANDROID)
#if 0
class PrefServiceAndroid;
#endif
@ -405,7 +405,7 @@ class COMPONENTS_PREFS_EXPORT PrefService {
void RemoveStandaloneBrowserPref(const std::string& path);
#endif
#if BUILDFLAG(IS_ANDROID)
#if 0
base::android::ScopedJavaLocalRef<jobject> GetJavaObject();
#endif
@ -526,7 +526,7 @@ class COMPONENTS_PREFS_EXPORT PrefService {
// of registered preferences are.
mutable PreferenceMap prefs_map_;
#if BUILDFLAG(IS_ANDROID)
#if 0
// Manage and fetch the java object that wraps this PrefService on
// android.
std::unique_ptr<PrefServiceAndroid> pref_service_android_;