OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 // This file intentionally does not have header guards, it's included |
| 6 // inside macros to translate between Values and C++ types. |
| 7 |
| 8 // This file lists the fields of chrome.experimental.downloads.DownloadItem. |
| 9 // See chrome/common/extensions/api/extension_api.json for their descriptions. |
| 10 |
| 11 FIELD(id, Integer) |
| 12 FIELD(url, String) |
| 13 FIELD(filename, String) |
| 14 FIELD(danger, String) |
| 15 FIELD(dangerAccepted, Boolean) |
| 16 FIELD(state, String) |
| 17 FIELD(paused, Boolean) |
| 18 FIELD(mime, String) |
| 19 FIELD(startTime, Integer) |
| 20 FIELD(endTime, Integer) |
| 21 FIELD(bytesReceived, Integer) |
| 22 FIELD(totalBytes, Integer) |
| 23 FIELD(fileSize, Integer) |
| 24 FIELD(error, Integer) |
OLD | NEW |