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

Unified Diff: chrome/test/data/extensions/api_test/infobars/test.js

Issue 20081002: Remove experimental permission from infobars API and moving it to dev channel (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Reverted the app.yaml version change Created 7 years, 5 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/infobars/test.js
diff --git a/chrome/test/data/extensions/api_test/infobars/test.js b/chrome/test/data/extensions/api_test/infobars/test.js
index 4a0ea3d028aee90342d465e12f976feff0351efa..8e43ba5cc8ae8236eff6ddac61c8ade52bef7b21 100644
--- a/chrome/test/data/extensions/api_test/infobars/test.js
+++ b/chrome/test/data/extensions/api_test/infobars/test.js
@@ -29,7 +29,7 @@ var tests = [
console.log('windowB: ' + windowB);
// Show infobarA in window A (tab A) (and specify no callback).
- chrome.experimental.infobars.show({"path": "infobarA.html",
+ chrome.infobars.show({"path": "infobarA.html",
"tabId": tabA});
Matt Perry 2013/07/26 18:26:24 fix the indent here
pals 2013/07/29 06:04:04 Done.
// Flow continues in infobarCallbackA.
});
@@ -53,7 +53,7 @@ function infobarCallbackA() {
tabB = tabs[0].id;
// Show infobarB in (current) window B (with callback).
- chrome.experimental.infobars.show({"path": "infobarB.html",
+ chrome.infobars.show({"path": "infobarB.html",
"tabId": tabB},
Matt Perry 2013/07/26 18:26:24 ditto
pals 2013/07/29 06:04:04 Done.
function(window) {
assertEq(window.id, windowB);

Powered by Google App Engine
This is Rietveld 408576698