Index: chrome/test/data/extensions/api_test/identity/test.js |
=================================================================== |
--- chrome/test/data/extensions/api_test/identity/test.js (revision 136630) |
+++ chrome/test/data/extensions/api_test/identity/test.js (working copy) |
@@ -10,5 +10,13 @@ |
chrome.experimental.identity.getAuthToken(pass(function(token) { |
assertEq("auth_token", token); |
})); |
+ }, |
+ |
+ function launchAuthFlow() { |
Mihai Parparita -not on Chrome
2012/05/14 20:59:39
Seems like you need to update the C++ side of this
Munjal (Google)
2012/05/15 00:55:20
Oh yes, completely forgot about this file (got it
Munjal (Google)
2012/05/15 18:20:02
Done.
|
+ chrome.experimental.identity.launchAuthFlow( |
+ {url: "https://some/url"}, |
+ pass(function(responseUrl) { |
+ assertEq("https://test/url", responseUrl); |
+ })); |
} |
]); |