OLD | NEW |
(Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_ |
| 6 #define CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_ |
| 7 |
| 8 #include <jni.h> |
| 9 #include "base/macros.h" |
| 10 |
| 11 namespace chrome { |
| 12 namespace android { |
| 13 |
| 14 class PreferencesLauncher { |
| 15 public: |
| 16 // Opens the autofill settings page. |
| 17 static void ShowAutofillSettings(); |
| 18 |
| 19 private: |
| 20 PreferencesLauncher() {} |
| 21 ~PreferencesLauncher() {} |
| 22 |
| 23 DISALLOW_COPY_AND_ASSIGN(PreferencesLauncher); |
| 24 }; |
| 25 |
| 26 } // namespace android |
| 27 } // namespace chrome |
| 28 |
| 29 #endif // CHROME_BROWSER_ANDROID_PREFERENCES_PREFERENCES_LAUNCHER_H_ |
OLD | NEW |