| OLD | NEW |
| 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'); |
| (...skipping 341 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 } | 352 } |
| 353 }, | 353 }, |
| 354 collapsed: { | 354 collapsed: { |
| 355 on: { | 355 on: { |
| 356 msgId: 'aria_expanded_false' | 356 msgId: 'aria_expanded_false' |
| 357 }, | 357 }, |
| 358 off: { | 358 off: { |
| 359 msgId: 'aria_expanded_true' | 359 msgId: 'aria_expanded_true' |
| 360 } | 360 } |
| 361 }, | 361 }, |
| 362 disabled: { |
| 363 on: { |
| 364 msgId: 'aria_disabled_true' |
| 365 } |
| 366 }, |
| 362 expanded: { | 367 expanded: { |
| 363 on: { | 368 on: { |
| 364 msgId: 'aria_expanded_true' | 369 msgId: 'aria_expanded_true' |
| 365 }, | 370 }, |
| 366 off: { | 371 off: { |
| 367 msgId: 'aria_expanded_false' | 372 msgId: 'aria_expanded_false' |
| 368 } | 373 } |
| 369 }, | 374 }, |
| 370 pressed: { | 375 pressed: { |
| 371 on: { | 376 on: { |
| (...skipping 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1643 break; | 1648 break; |
| 1644 } | 1649 } |
| 1645 earconFinder = earconFinder.parent; | 1650 earconFinder = earconFinder.parent; |
| 1646 } | 1651 } |
| 1647 } | 1652 } |
| 1648 return null; | 1653 return null; |
| 1649 } | 1654 } |
| 1650 }; | 1655 }; |
| 1651 | 1656 |
| 1652 }); // goog.scope | 1657 }); // goog.scope |
| OLD | NEW |