Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Side by Side Diff: chromeos/audio/audio_a11y_controller.h

Issue 1840913002: A11y setting: mono audio UI (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: delete tray a11y hand icon view Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chromeos/audio/audio_a11y_controller.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2013 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 CHROMEOS_AUDIO_AUDIO_A11Y_CONTROLLER_H_
6 #define CHROMEOS_AUDIO_AUDIO_A11Y_CONTROLLER_H_
7
8 #include <stdint.h>
9
10 #include "base/macros.h"
11 #include "chromeos/audio/cras_audio_handler.h"
12 #include "chromeos/chromeos_export.h"
13
14 namespace chromeos {
15
16 class CHROMEOS_EXPORT AudioA11yController {
17 public:
18 AudioA11yController();
19 ~AudioA11yController();
20
21 // Set audio outputs mono or not (that is stereo).
22 void SetOutputMono(bool enabled);
23
24 private:
25 CrasAudioHandler* cras_audio_handler_;
26
27 DISALLOW_COPY_AND_ASSIGN(AudioA11yController);
28 };
29
30 } // namespace chromeos
31
32 #endif // CHROMEOS_AUDIO_AUDIO_A11Y_CONTROLLER_H_
OLDNEW
« no previous file with comments | « chrome/common/pref_names.cc ('k') | chromeos/audio/audio_a11y_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698