OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // downloads api test | 5 // downloads api test |
6 // browser_tests.exe --gtest_filter=DownloadsApiTest.Downloads | 6 // browser_tests.exe --gtest_filter=DownloadsApiTest.Downloads |
7 | 7 |
8 // Comment this out to enable debugging. | 8 // Comment this out to enable debugging. |
9 console.debug = function() {}; | 9 console.debug = function() {}; |
10 | 10 |
(...skipping 1080 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1091 }, | 1091 }, |
1092 | 1092 |
1093 function callNotifyPass() { | 1093 function callNotifyPass() { |
1094 chrome.test.notifyPass(); | 1094 chrome.test.notifyPass(); |
1095 setTimeout(chrome.test.callback(function() { | 1095 setTimeout(chrome.test.callback(function() { |
1096 console.debug(''); | 1096 console.debug(''); |
1097 }), 0); | 1097 }), 0); |
1098 } | 1098 } |
1099 ]); | 1099 ]); |
1100 }); | 1100 }); |
OLD | NEW |