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

Side by Side Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/output.js

Issue 2768703002: Wire up an api to darken screen for accessibility (Closed)
Patch Set: Rebase. Created 3 years, 9 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * @fileoverview Provides output services for ChromeVox. 6 * @fileoverview Provides output services for ChromeVox.
7 */ 7 */
8 8
9 goog.provide('Output'); 9 goog.provide('Output');
10 goog.provide('Output.EventType'); 10 goog.provide('Output.EventType');
11 11
12 goog.require('AutomationTreeWalker'); 12 goog.require('AutomationTreeWalker');
13 goog.require('EarconEngine'); 13 goog.require('EarconEngine');
14 goog.require('Spannable'); 14 goog.require('Spannable');
15 goog.require('Stubs');
16 goog.require('constants'); 15 goog.require('constants');
17 goog.require('cursors.Cursor'); 16 goog.require('cursors.Cursor');
18 goog.require('cursors.Range'); 17 goog.require('cursors.Range');
19 goog.require('cursors.Unit'); 18 goog.require('cursors.Unit');
20 goog.require('cvox.AbstractEarcons'); 19 goog.require('cvox.AbstractEarcons');
21 goog.require('cvox.ChromeVox'); 20 goog.require('cvox.ChromeVox');
22 goog.require('cvox.NavBraille'); 21 goog.require('cvox.NavBraille');
23 goog.require('cvox.TtsCategory'); 22 goog.require('cvox.TtsCategory');
24 goog.require('cvox.ValueSelectionSpan'); 23 goog.require('cvox.ValueSelectionSpan');
25 goog.require('cvox.ValueSpan'); 24 goog.require('cvox.ValueSpan');
(...skipping 1850 matching lines...) Expand 10 before | Expand all | Expand 10 after
1876 /** 1875 /**
1877 * Gets the output buffer for braille. 1876 * Gets the output buffer for braille.
1878 * @return {!Spannable} 1877 * @return {!Spannable}
1879 */ 1878 */
1880 get brailleOutputForTest() { 1879 get brailleOutputForTest() {
1881 return this.mergeBraille_(this.brailleBuffer_); 1880 return this.mergeBraille_(this.brailleBuffer_);
1882 } 1881 }
1883 }; 1882 };
1884 1883
1885 }); // goog.scope 1884 }); // goog.scope
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698