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

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

Issue 1561773002: Implement ChromeVox Next menus. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@panel_view_type
Patch Set: Fix Ozone by only activating panel when fullscreen Created 4 years, 10 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 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 Commands to pass from the ChromeVox background page context 6 * @fileoverview Commands to pass from the ChromeVox background page context
7 * to the ChromeVox Panel. 7 * to the ChromeVox Panel.
8 */ 8 */
9 9
10 goog.provide('PanelCommand'); 10 goog.provide('PanelCommand');
(...skipping 25 matching lines...) Expand all
36 36
37 /** 37 /**
38 * Possible panel commands. 38 * Possible panel commands.
39 * @enum {string} 39 * @enum {string}
40 */ 40 */
41 PanelCommandType = { 41 PanelCommandType = {
42 CLEAR_SPEECH: 'clear_speech', 42 CLEAR_SPEECH: 'clear_speech',
43 ADD_NORMAL_SPEECH: 'add_normal_speech', 43 ADD_NORMAL_SPEECH: 'add_normal_speech',
44 ADD_ANNOTATION_SPEECH: 'add_annotation_speech', 44 ADD_ANNOTATION_SPEECH: 'add_annotation_speech',
45 UPDATE_BRAILLE: 'update_braille', 45 UPDATE_BRAILLE: 'update_braille',
46 OPEN_MENUS: 'open_menus',
47 ENABLE_MENUS: 'enable_menus',
48 DISABLE_MENUS: 'disable_menus',
46 }; 49 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698