Index: components/download/internal/proto/request.proto |
diff --git a/components/download/internal/proto/request.proto b/components/download/internal/proto/request.proto |
new file mode 100644 |
index 0000000000000000000000000000000000000000..173c6856182bdea5e684203cb78ca75194966968 |
--- /dev/null |
+++ b/components/download/internal/proto/request.proto |
@@ -0,0 +1,21 @@ |
+// 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; |
+ |
+message RequestHeader { |
+ optional string key = 1; |
+ optional string value = 2; |
+} |
+ |
+// Stores the HTTP request params associated with a download request. |
+message RequestParams { |
+ optional string url = 1; |
+ optional string method = 2; |
+ repeated RequestHeader headers = 3; |
+} |