| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 | 5 |
| 6 // File errors. | 6 // File errors. |
| 7 | 7 |
| 8 // Generic file operation failure. | 8 // Generic file operation failure. |
| 9 // "File Error". | 9 // "File Error". |
| 10 INTERRUPT_REASON(FILE_FAILED, 1) | 10 INTERRUPT_REASON(FILE_FAILED, 1) |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 // The user shut down the browser. | 84 // The user shut down the browser. |
| 85 // Internal use only: resume pending downloads if possible. | 85 // Internal use only: resume pending downloads if possible. |
| 86 INTERRUPT_REASON(USER_SHUTDOWN, 41) | 86 INTERRUPT_REASON(USER_SHUTDOWN, 41) |
| 87 | 87 |
| 88 | 88 |
| 89 // Crash. | 89 // Crash. |
| 90 | 90 |
| 91 // The browser crashed. | 91 // The browser crashed. |
| 92 // Internal use only: resume pending downloads if possible. | 92 // Internal use only: resume pending downloads if possible. |
| 93 INTERRUPT_REASON(CRASH, 50) | 93 INTERRUPT_REASON(CRASH, 50) |
| OLD | NEW |