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

Unified Diff: components/cast_channel/proto/logging.proto

Issue 2913033003: [cast_channel] Move cast_channel related files from //extensions to //components (Closed)
Patch Set: fix buildbot compile errors Created 3 years, 6 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/cast_channel/proto/cast_channel.proto ('k') | extensions/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/cast_channel/proto/logging.proto
diff --git a/extensions/common/api/cast_channel/logging.proto b/components/cast_channel/proto/logging.proto
similarity index 89%
rename from extensions/common/api/cast_channel/logging.proto
rename to components/cast_channel/proto/logging.proto
index a199c01eb1f8b4a85965ae78a82fbd759fc99252..1b20d6203800fa1a5caacfb23161e7690bc6a49e 100644
--- a/extensions/common/api/cast_channel/logging.proto
+++ b/components/cast_channel/proto/logging.proto
@@ -2,11 +2,13 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
+// TODO(crbug.com/513801) to replace this file with plain enums/structs.
+
syntax = "proto2";
option optimize_for = LITE_RUNTIME;
-package extensions.api.cast_channel.proto;
+package cast_channel.proto;
enum EventType {
EVENT_TYPE_UNKNOWN = 0;
@@ -27,20 +29,20 @@ enum EventType {
AUTH_CHALLENGE_REPLY = 15;
CONNECT_TIMED_OUT = 16;
SEND_MESSAGE_FAILED = 17;
- MESSAGE_ENQUEUED = 18; // Message
- SOCKET_WRITE = 19; // Logged with RV.
- MESSAGE_WRITTEN = 20; // Message
- SOCKET_READ = 21; // Logged with RV.
- MESSAGE_READ = 22; // Message
+ MESSAGE_ENQUEUED = 18; // Message
+ SOCKET_WRITE = 19; // Logged with RV.
+ MESSAGE_WRITTEN = 20; // Message
+ SOCKET_READ = 21; // Logged with RV.
+ MESSAGE_READ = 22; // Message
SOCKET_CLOSED = 25;
SSL_CERT_EXCESSIVE_LIFETIME = 26;
CHANNEL_POLICY_ENFORCED = 27;
- TCP_SOCKET_CONNECT_COMPLETE = 28; // Logged with RV.
- SSL_SOCKET_CONNECT_COMPLETE = 29; // Logged with RV.
- SSL_SOCKET_CONNECT_FAILED = 30; // Logged with RV.
- SEND_AUTH_CHALLENGE_FAILED = 31; // Logged with RV.
+ TCP_SOCKET_CONNECT_COMPLETE = 28; // Logged with RV.
+ SSL_SOCKET_CONNECT_COMPLETE = 29; // Logged with RV.
+ SSL_SOCKET_CONNECT_FAILED = 30; // Logged with RV.
+ SEND_AUTH_CHALLENGE_FAILED = 31; // Logged with RV.
AUTH_CHALLENGE_REPLY_INVALID = 32;
- PING_WRITE_ERROR = 33; // Logged with RV.
+ PING_WRITE_ERROR = 33; // Logged with RV.
}
enum ChannelAuth {
« no previous file with comments | « components/cast_channel/proto/cast_channel.proto ('k') | extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698