blob: d6f08fa0dbf1f332865619a44f30da06d0dc478c [file] [log] [blame]
Evan Liuf248d402019-06-26 22:57:101// 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
10namespace captions {
11
12// An abstraction of a caption settings dialog. This is used for the captions
13// sub-section of Settings.
14class 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_