blob: 1c3b14bf5b60ac3a75b26d5a4578483dfe1a6348 [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.
#ifndef CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_
#define CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_
#include "base/macros.h"
namespace content {
class WebContents;
}
namespace chrome {
namespace android {
class PreferencesLauncher {
public:
// Opens the autofill settings page.
static void ShowAutofillSettings(content::WebContents* web_contents);
// Opens the password settings page.
static void ShowPasswordSettings();
private:
PreferencesLauncher() {}
~PreferencesLauncher() {}
DISALLOW_COPY_AND_ASSIGN(PreferencesLauncher);
};
} // namespace android
} // namespace chrome
#endif // CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_