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

Unified Diff: components/download/internal/proto/scheduling.proto

Issue 2881173003: Download Service : Added leveldb proto layer (Closed)
Patch Set: Removed Model::Destroy Created 3 years, 7 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
« no previous file with comments | « components/download/internal/proto/request.proto ('k') | components/download/internal/proto_conversions.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/download/internal/proto/scheduling.proto
diff --git a/components/download/internal/proto/scheduling.proto b/components/download/internal/proto/scheduling.proto
new file mode 100644
index 0000000000000000000000000000000000000000..2b8cc7ac7479c226ae8bbb0b5c696ade1cdcd4ee
--- /dev/null
+++ b/components/download/internal/proto/scheduling.proto
@@ -0,0 +1,43 @@
+// Copyright 2017 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.
+
+syntax = "proto2";
+
+option optimize_for = LITE_RUNTIME;
+
+package protodb;
+
+// Stores the scheduling params associated with a download request.
+message SchedulingParams {
+ // This should stay in sync with the NetworkRequirements enum
+ // (components/download/public/download_params.h).
+ enum NetworkRequirements {
+ NONE = 0;
+ OPTIMISTIC = 1;
+ UNMETERED = 2;
+ }
+
+ // This should stay in sync with the BatteryRequirements enum
+ // (components/download/public/download_params.h).
+ enum BatteryRequirements {
+ BATTERY_INSENSITIVE = 0;
+ BATTERY_SENSITIVE = 1;
+ }
+
+ // This should stay in sync with the Priority enum
+ // (components/download/public/download_params.h).
+ enum Priority {
+ LOW = 0;
+ NORMAL = 1;
+ HIGH = 2;
+ UI = 3;
+ }
+
+ // Uses internal time representation.
+ optional int64 cancel_time = 2;
+
+ optional Priority priority = 3;
+ optional NetworkRequirements network_requirements = 4;
+ optional BatteryRequirements battery_requirements = 5;
+}
« no previous file with comments | « components/download/internal/proto/request.proto ('k') | components/download/internal/proto_conversions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698