Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 chrome.extension.sendMessage({message: "getIntentsCount"}, function(response) { | |
| 6 if (response.count != 4) { | |
|
Mihai Parparita -not on Chrome
2012/09/05 22:35:29
This will never not be 4, since the message to unb
zel
2012/09/05 23:33:48
Done. Removed check_events.* and related code.
| |
| 7 console.log('HANDLER: Incorrect intent count - ' + response.count); | |
| 8 chrome.test.fail('HANDLER: No content changed!'); | |
| 9 return; | |
| 10 } | |
| 11 console.log('HANDLER: Got all intents!'); | |
| 12 chrome.test.succeed(); | |
| 13 }); | |
| OLD | NEW |