OLD | NEW |
| (Empty) |
1 // Copyright 2016 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 | |
7 // TODO(xyzzyz): Update proto service/message definitions once we have | |
8 // determined the final Engine/Service interface. | |
9 | |
10 package blimp; | |
11 | |
12 option optimize_for = LITE_RUNTIME; | |
13 | |
14 message EngineReadyRequest {} | |
15 message EngineReadyResponse {} | |
16 | |
17 service Lifetime { | |
18 // Engine calls the EngineReady method on Rendering Server to let it know that | |
19 // it has initialized. | |
20 rpc EngineReady(EngineReadyRequest) returns (EngineReadyResponse) {} | |
21 } | |
OLD | NEW |