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

Side by Side Diff: components/offline_pages/core/prefetch/proto/status.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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2017 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 syntax = "proto3";
6 option optimize_for = LITE_RUNTIME;
7
8 package offline_pages.proto;
9
10 import "any.proto";
11
12 enum Code {
13 OK = 0;
14 UNKNOWN = 2;
15 NOT_FOUND = 5;
16 FAILED_PRECONDITION = 9;
17 }
18
19 message Status {
20 // The status code.
21 int32 code = 1;
22
23 // A developer-facing error message, which should be in English.
24 string message = 2;
25
26 // A list of messages that carry the error details. There will be a
27 // common set of message types for APIs to use.
28 repeated Any details = 3;
29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698