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

Unified Diff: chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js

Issue 2486293002: Add keyboard explorer improvements for braille (Closed)
Patch Set: Indents and braille cap cond Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
index 4a34dd565fe2792ec36fa9e40dfaef0d34af920a..b87ad1267bb4d737f39927558988abe8539f6324 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/command_handler.js
@@ -159,7 +159,11 @@ CommandHandler.onCommand = function(command) {
cvox.QueueMode.FLUSH);
return false;
case 'reportIssue':
- var url = Background.ISSUE_URL;
+ var url = 'https://code.google.com/p/chromium/issues/entry?' +
+ 'labels=Type-Bug,Pri-2,cvox2,OS-Chrome&' +
+ 'components=UI>accessibility&' +
+ 'description=';
+
var description = {};
description['Mode'] = ChromeVoxState.instance.mode;
description['Version'] = chrome.app.getDetails().version;

Powered by Google App Engine
This is Rietveld 408576698