blob: 80e8091ae9265a1c60a4ee7ad82ce71847ce99ae [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 chrome {
namespace android {
class PreferencesLauncher {
public:
// Opens the autofill settings page.
static void ShowAutofillSettings();
// 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_