Evan Liu | f248d40 | 2019-06-26 22:57:10 | [diff] [blame] | 1 | // Copyright 2019 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_ACCESSIBILITY_CAPTION_SETTINGS_DIALOG_H_ |
| 6 | #define CHROME_BROWSER_ACCESSIBILITY_CAPTION_SETTINGS_DIALOG_H_ |
| 7 | |
| 8 | #include "base/macros.h" |
| 9 | |
| 10 | namespace captions { |
| 11 | |
| 12 | // An abstraction of a caption settings dialog. This is used for the captions |
| 13 | // sub-section of Settings. |
| 14 | class CaptionSettingsDialog { |
| 15 | public: |
| 16 | // Displays the native captions manager dialog. |
| 17 | static void ShowCaptionSettingsDialog(); |
| 18 | |
| 19 | private: |
| 20 | DISALLOW_IMPLICIT_CONSTRUCTORS(CaptionSettingsDialog); |
| 21 | }; |
| 22 | |
| 23 | } // namespace captions |
| 24 | |
| 25 | #endif // CHROME_BROWSER_ACCESSIBILITY_CAPTION_SETTINGS_DIALOG_H_ |