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

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

Issue 1311463007: Rename some earcons based on actual usage (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@earcons_by_name
Patch Set: Didn't mean to rename ALERT, revert that part Created 5 years, 3 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/chromevox/background/tabs_api_handler.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/background/tabs_api_handler.js b/chrome/browser/resources/chromeos/chromevox/chromevox/background/tabs_api_handler.js
index 6d40b881db6eb5c335a4d8625d145f8a4de6b7b2..89d2ce1c1c51cab3f442c8954e6ca12ca6dfc854 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/background/tabs_api_handler.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/background/tabs_api_handler.js
@@ -115,10 +115,10 @@ cvox.TabsApiHandler.prototype = {
}
if (tab.status == 'loading') {
this.lastActiveTabLoaded_ = false;
- this.earcons_.playEarcon(cvox.Earcon.BUSY_PROGRESS_LOOP);
+ this.earcons_.playEarcon(cvox.Earcon.PAGE_START_LOADING);
} else if (!this.lastActiveTabLoaded_) {
this.lastActiveTabLoaded_ = true;
- this.earcons_.playEarcon(cvox.Earcon.TASK_SUCCESS);
+ this.earcons_.playEarcon(cvox.Earcon.PAGE_FINISH_LOADING);
}
}.bind(this));
},

Powered by Google App Engine
This is Rietveld 408576698