mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-23 13:56:10 +03:00
prefs: Disable Android JNI
This commit is contained in:
parent
43499924b9
commit
5360cdf1da
@ -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",
|
||||
|
@ -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);
|
||||
|
@ -31,7 +31,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
|
||||
|
||||
@ -40,7 +40,7 @@ class PrefNotifierImpl;
|
||||
class PrefObserver;
|
||||
class PrefRegistry;
|
||||
class PrefStore;
|
||||
#if BUILDFLAG(IS_ANDROID)
|
||||
#if 0
|
||||
class PrefServiceAndroid;
|
||||
#endif
|
||||
|
||||
@ -404,7 +404,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
|
||||
|
||||
@ -525,7 +525,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_;
|
||||
|
Loading…
Reference in New Issue
Block a user