Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
michael@0 | 1 | // Plugin Hang UI constants |
michael@0 | 2 | const HANGUIOP_NOTHING = 0; |
michael@0 | 3 | const HANGUIOP_CANCEL = 1; |
michael@0 | 4 | const HANGUIOP_COMMAND = 2; |
michael@0 | 5 | const IDC_CONTINUE = 1001; |
michael@0 | 6 | const IDC_STOP = 1002; |
michael@0 | 7 | const IDC_NOFUTURE = 1003; |
michael@0 | 8 | |
michael@0 | 9 | // Windows constants |
michael@0 | 10 | const WM_CLOSE = 0x0010; |
michael@0 | 11 | const WM_COMMAND = 0x0111; |
michael@0 | 12 | const BM_GETCHECK = 0x00F0; |
michael@0 | 13 | const BM_SETCHECK = 0x00F1; |
michael@0 | 14 | const BN_CLICKED = 0; |
michael@0 | 15 | const BST_CHECKED = 1; |
michael@0 | 16 | |
michael@0 | 17 | // Test-specific constants |
michael@0 | 18 | const EPSILON_MS = 1000; |
michael@0 | 19 | const STALL_DURATION = 2; |
michael@0 | 20 |