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

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

Issue 2108963003: Initial draft of ChromeVox Next tutorial. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix grd Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
index e07e88b7bf735b00a81b0c42172c5fef1f61c20d..1dd4bce96c4b276a5b0dd5f1e59cbbcda97f7b84 100644
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/notifications.js
@@ -8,6 +8,8 @@
goog.provide('Notifications');
+goog.require('PanelCommand');
+
/**
* ChromeVox update notification.
* @constructor
@@ -43,8 +45,7 @@ UpdateNotification.prototype = {
* @param {string} notificationId
*/
onClicked: function(notificationId) {
- var nextUpdatePage = {url: 'cvox2/background/next_update.html'};
- chrome.tabs.create(nextUpdatePage);
David Tseng 2016/06/29 20:59:43 Can you delete this file (if you're not planning o
dmazzoni 2016/06/29 22:51:35 Done.
+ (new PanelCommand(PanelCommandType.TUTORIAL)).send();
},
/**

Powered by Google App Engine
This is Rietveld 408576698