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

Unified Diff: chrome/test/data/extensions/api_test/active_tab/background.js

Issue 2601333002: Update json_schema_compiler to handle the Automation extension API (Closed)
Patch Set: Rebase Created 3 years, 11 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/test/data/extensions/api_test/active_tab/background.js
diff --git a/chrome/test/data/extensions/api_test/active_tab/background.js b/chrome/test/data/extensions/api_test/active_tab/background.js
index dbf83fcb198c27bb08c0775bc0ffeac98b518e44..7ccd11832dac9ca9f863f5a5fff8fddaaabf4e20 100644
--- a/chrome/test/data/extensions/api_test/active_tab/background.js
+++ b/chrome/test/data/extensions/api_test/active_tab/background.js
@@ -50,7 +50,7 @@ chrome.browserAction.onClicked.addListener(function(tab) {
chrome.automation.getTree(callbackPass(function(rootNode) {
assertFalse(rootNode == undefined);
- assertEq(RoleType.rootWebArea, rootNode.role);
+ assertEq(RoleType.ROOT_WEB_AREA, rootNode.role);
}));
});

Powered by Google App Engine
This is Rietveld 408576698