| Index: chrome/browser/android/chrome_application.cc
|
| diff --git a/chrome/browser/android/chrome_application.cc b/chrome/browser/android/chrome_application.cc
|
| index 324167e743f9213fce54e7c1abdc05309755dae0..15df7073b9843c9ff7e0e60f78094c646838cfb1 100644
|
| --- a/chrome/browser/android/chrome_application.cc
|
| +++ b/chrome/browser/android/chrome_application.cc
|
| @@ -9,7 +9,6 @@
|
| #include "base/android/context_utils.h"
|
| #include "base/android/jni_android.h"
|
| #include "base/android/jni_string.h"
|
| -#include "chrome/browser/android/tab_android.h"
|
| #include "chrome/browser/browser_process.h"
|
| #include "chrome/browser/net/predictor.h"
|
| #include "chrome/browser/profiles/profile.h"
|
| @@ -18,7 +17,6 @@
|
| #include "components/prefs/pref_service.h"
|
| #include "content/public/browser/browser_thread.h"
|
| #include "content/public/browser/storage_partition.h"
|
| -#include "content/public/browser/web_contents.h"
|
| #include "jni/ChromeApplication_jni.h"
|
| #include "net/cookies/cookie_store.h"
|
| #include "net/url_request/url_request_context.h"
|
| @@ -102,26 +100,5 @@ bool ChromeApplication::RegisterBindings(JNIEnv* env) {
|
| return RegisterNativesImpl(env);
|
| }
|
|
|
| -void ChromeApplication::ShowPasswordSettings() {
|
| - Java_ChromeApplication_showPasswordSettings(
|
| - base::android::AttachCurrentThread(),
|
| - base::android::GetApplicationContext());
|
| -}
|
| -
|
| -void ChromeApplication::OpenClearBrowsingData(
|
| - content::WebContents* web_contents) {
|
| - TabAndroid* tab = TabAndroid::FromWebContents(web_contents);
|
| - DCHECK(tab);
|
| - Java_ChromeApplication_openClearBrowsingData(
|
| - base::android::AttachCurrentThread(),
|
| - base::android::GetApplicationContext(), tab->GetJavaObject());
|
| -}
|
| -
|
| -bool ChromeApplication::AreParentalControlsEnabled() {
|
| - return Java_ChromeApplication_areParentalControlsEnabled(
|
| - base::android::AttachCurrentThread(),
|
| - base::android::GetApplicationContext());
|
| -}
|
| -
|
| } // namespace android
|
| } // namespace chrome
|
|
|