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

Side by Side Diff: chrome/test/data/extensions/api_test/incognito/dont_create_profile/background.html

Issue 5742011: Do not create an incognito profile if none exists in cookies.getAllCookieStores (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/chrome/browser/extensions
Patch Set: Created 10 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <script>
2 chrome.test.runTests([
3 function enumerateTabs() {
4 chrome.windows.getAll({"populate": true}, function (windows) {
5 chrome.test.succeed();
6 });
7 },
8 function getAllCookieStores() {
9 chrome.cookies.getAllCookieStores(function (stores) {
10 chrome.test.succeed();
11 });
12 }
13 ]);
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698