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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/download/download_query_fields.h
diff --git a/chrome/browser/download/download_query_fields.h b/chrome/browser/download/download_query_fields.h
new file mode 100644
index 0000000000000000000000000000000000000000..3e8ca5865c9fb92c0ef75d4b1a01f0c818878b92
--- /dev/null
+++ b/chrome/browser/download/download_query_fields.h
@@ -0,0 +1,26 @@
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+// This file intentionally does not have header guards, it's included
+// inside macros to translate between Values and C++ types.
+
+// This file lists the fields of chrome.experimental.downloads.DownloadQuery.
+// See chrome/common/extensions/api/extension_api.json for their descriptions.
+
+// DownloadQuery is a superset of DownloadItem.
+#include "chrome/browser/download/simple_download_item_fields.h"
+
+FIELD(query, String)
+FIELD(startedBefore, Integer)
+FIELD(startedAfter, Integer)
+FIELD(endedBefore, Integer)
+FIELD(endedAfter, Integer)
+FIELD(totalBytesGreater, Integer)
+FIELD(totalBytesLess, Integer)
+FIELD(fileSizeGreater, Integer)
+FIELD(fileSizeLess, Integer)
+FIELD(filenameRegex, String)
+FIELD(urlRegex, String)
+FIELD(limit, Integer)
+FIELD(orderBy, String)
« 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