-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial ProtoBuf for DevToolsMessages. (#6438)
- Add devtools_message.proto file - Create and send message in DevToolsService with the new ProtoBuf. cc: @piotrswigon @jasonwyatt Closes #6438 COPYBARA_INTEGRATE_REVIEW=#6438 from SHeimlich:devtools-protos 226b0ab PiperOrigin-RevId: 339127009
- Loading branch information
Showing
3 changed files
with
44 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package arcs.android.devtools; | ||
|
||
import "java/arcs/android/storage/proxy_message.proto"; | ||
|
||
option java_package = "arcs.android.devtools"; | ||
|
||
message DevToolsProxyMessageProto { | ||
arcs.android.storage.ProxyMessageProto proxy_message = 1; | ||
enum StoreType { | ||
DIRECT = 0; | ||
REFERENCE_MODE = 1; | ||
} | ||
|
||
string storage_key = 2; | ||
StoreType store_type = 3; | ||
} |