Logcat works now, but still kind of wondering how the messages should arrive.

This commit is contained in:
Simo Kinnunen
2014-04-17 18:27:35 +09:00
parent 40b493649b
commit 8da5b61289
7 changed files with 240 additions and 107 deletions

View File

@@ -39,6 +39,8 @@ enum MessageType {
ForwardTestMessage = 36;
ForwardCreateMessage = 37;
ForwardRemoveMessage = 38;
LogcatStartMessage = 39;
LogcatStopMessage = 40;
}
message Envelope {
@@ -316,6 +318,13 @@ message LogcatFilter {
required uint32 priority = 2;
}
message LogcatStartMessage {
repeated LogcatFilter filters = 1;
}
message LogcatStopMessage {
}
message LogcatApplyFiltersMessage {
repeated LogcatFilter filters = 1;
}