Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(170)

Side by Side Diff: chrome/browser/download/download_query_fields.h

Issue 7192016: chrome.experimental.downloads (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: merged db_handle, id; onCreated, onErased Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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.DownloadQuery.
9 // See chrome/common/extensions/api/extension_api.json for their descriptions.
10
11 // DownloadQuery is a superset of DownloadItem.
12 #include "chrome/browser/download/simple_download_item_fields.h"
13
14 FIELD(query, String)
15 FIELD(startedBefore, Integer)
16 FIELD(startedAfter, Integer)
17 FIELD(endedBefore, Integer)
18 FIELD(endedAfter, Integer)
19 FIELD(totalBytesGreater, Integer)
20 FIELD(totalBytesLess, Integer)
21 FIELD(fileSizeGreater, Integer)
22 FIELD(fileSizeLess, Integer)
23 FIELD(filenameRegex, String)
24 FIELD(urlRegex, String)
25 FIELD(limit, Integer)
26 FIELD(orderBy, String)
OLDNEW
« no previous file with comments | « chrome/browser/download/download_query.cc ('k') | chrome/browser/download/download_status_updater_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698