blob: c2c139aff7b0bbf3d355aa9e443d5b10721a88ee [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "chrome/browser/android/preferences/preferences_launcher.h"
#include "base/android/jni_android.h"
#include "chrome/browser/android/tab_android.h"
#include "content/public/browser/web_contents.h"
#include "jni/PreferencesLauncher_jni.h"
namespace chrome {
namespace android {
void PreferencesLauncher::ShowAutofillSettings() {
Java_PreferencesLauncher_showAutofillSettings(
base::android::AttachCurrentThread());
}
void PreferencesLauncher::ShowPasswordSettings() {
Java_PreferencesLauncher_showPasswordSettings(
base::android::AttachCurrentThread());
}
} // namespace android
} // namespace chrome