| Index: chrome/browser/android/preferences/preferences_launcher.h
|
| diff --git a/chrome/browser/android/preferences/preferences_launcher.h b/chrome/browser/android/preferences/preferences_launcher.h
|
| index 1385e9fdfc27ed6b508b1642afd709b1f264cfdd..7e9fab5cdc4db55a745b8446636c6c1c51475f02 100644
|
| --- a/chrome/browser/android/preferences/preferences_launcher.h
|
| +++ b/chrome/browser/android/preferences/preferences_launcher.h
|
| @@ -5,9 +5,12 @@
|
| #ifndef CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_
|
| #define CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_
|
|
|
| -#include <jni.h>
|
| #include "base/macros.h"
|
|
|
| +namespace content {
|
| +class WebContents;
|
| +}
|
| +
|
| namespace chrome {
|
| namespace android {
|
|
|
| @@ -16,6 +19,12 @@ class PreferencesLauncher {
|
| // Opens the autofill settings page.
|
| static void ShowAutofillSettings();
|
|
|
| + // Opens the password settings page.
|
| + static void ShowPasswordSettings();
|
| +
|
| + // Open the clear browsing data UI.
|
| + static void OpenClearBrowsingData(content::WebContents* web_contents);
|
| +
|
| private:
|
| PreferencesLauncher() {}
|
| ~PreferencesLauncher() {}
|
|
|