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

Unified Diff: chrome/browser/resources/chromeos/chromevox/chromevox/injected/serializer.js

Issue 816343004: Send an ack msg to a parent iframe when setting iframe ids for ChromeVox. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/injected/serializer.js
diff --git a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/serializer.js b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/serializer.js
index dcb7c82d9d38ec72f1f3d86b19d8fa8a290b20fc..619533686b5b2d2568b88b1ef65b62c604c38b02 100644
--- a/chrome/browser/resources/chromeos/chromevox/chromevox/injected/serializer.js
+++ b/chrome/browser/resources/chromeos/chromevox/chromevox/injected/serializer.js
@@ -25,6 +25,7 @@ cvox.Serializer = function() { };
cvox.Serializer.prototype.storeOn = function(store) {
cvox.ChromeVox.storeOn(store);
cvox.ChromeVoxEventWatcher.storeOn(store);
+ cvox.ChromeVox.navigationManager.storeOn(store);
};
/**
@@ -35,4 +36,5 @@ cvox.Serializer.prototype.storeOn = function(store) {
cvox.Serializer.prototype.readFrom = function(store) {
cvox.ChromeVox.readFrom(store);
cvox.ChromeVoxEventWatcher.readFrom(store);
+ cvox.ChromeVox.navigationManager.readFrom(store);
};

Powered by Google App Engine
This is Rietveld 408576698