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

Unified Diff: components/offline_pages/core/prefetch/proto/operation.proto

Issue 2873383004: [Offline Prefetch] Send GeneratePageBundleRequest to the server (Closed)
Patch Set: Address more feedback 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
Index: components/offline_pages/core/prefetch/proto/operation.proto
diff --git a/components/offline_pages/core/prefetch/proto/operation.proto b/components/offline_pages/core/prefetch/proto/operation.proto
new file mode 100644
index 0000000000000000000000000000000000000000..77558d9fb65fdcfad504fb329769abb12c89afe3
--- /dev/null
+++ b/components/offline_pages/core/prefetch/proto/operation.proto
@@ -0,0 +1,42 @@
+// 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 = "proto3";
+option optimize_for = LITE_RUNTIME;
+
+package offline_pages.proto;
+;
+
+import "any.proto";
+import "status.proto";
+
+// This resource represents a long-running operation that is the result of a
+// network API call.
+message Operation {
+ // The server-assigned name, which is only unique within the same service that
+ // originally returns it.
+ string name = 1;
+
+ // Service-specific metadata associated with the operation. It typically
+ // contains progress information and common metadata such as create time.
+ // Some services might not provide such metadata. Any method that returns a
+ // long-running operation should document the metadata type, if any.
+ Any metadata = 2;
+
+ // If the value is 'false', it means the operation is still in progress.
+ // If true, the operation is completed, and either 'error' or 'response' is
+ // available.
+ bool done = 3;
+
+ // The operation result, which can be either an 'error' or a valid 'response'.
+ // If 'done' == 'false', neither 'error' nor 'response' is set.
+ // If 'done' == 'true', exactly one of 'error' or 'response' is set.
+ oneof result {
+ // The error result of the operation in case of failure or cancellation.
+ Status error = 4;
+
+ // The normal response of the operation in case of success.
+ Any response = 5;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698