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

Unified Diff: blimp/common/proto/server_control.proto

Issue 1403083002: [Blimp] Adds Blimp EngineSession and ClientSession skeleton (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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 | « blimp/common/proto/control.proto ('k') | blimp/engine/browser/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/proto/server_control.proto
diff --git a/blimp/common/proto/server_control.proto b/blimp/common/proto/server_control.proto
deleted file mode 100644
index f1cf9760ddbd998bc8b6a68c7c5a6f5d3f1e0dbe..0000000000000000000000000000000000000000
--- a/blimp/common/proto/server_control.proto
+++ /dev/null
@@ -1,43 +0,0 @@
-// Copyright 2015 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.
-//
-// Message definitions for server-originating browser control messages.
-//
-// Current definitions are just placeholders and are NOT final.
-// Feel free to modify this interface as necessary during feature work.
-
-syntax = "proto2";
-
-option optimize_for = LITE_RUNTIME;
-
-message StatusArgs {
- optional string url = 1;
- optional int32 loading_progress = 2;
- // Add error code, error message, status strings, etc.
-}
-
-message ResetSessionArgs {
-}
-
-message ErrorArgs {
- enum ErrorCode {
- UNKNOWN = 1;
- UNRESPONSIVE = 2;
- SERVER_ERROR = 3;
- }
-
- optional ErrorCode error_code = 1;
- optional int32 server_error_code = 2;
-}
-
-message ServerControlMessage {
- enum Type {
- ERROR = 1;
- STATUS = 2;
- }
- optional Type type = 1;
-
- optional ErrorArgs error = 1000;
- optional StatusArgs status = 1001;
-}
« no previous file with comments | « blimp/common/proto/control.proto ('k') | blimp/engine/browser/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698