OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
haibinlu
2016/03/21 18:25:22
2016
Khushal
2016/03/22 04:11:42
Done.
| |
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 = "proto2"; | |
6 | |
7 option optimize_for = LITE_RUNTIME; | |
8 | |
9 package blimp; | |
10 | |
11 // This includes any settings/flags that can be set on the client or the engine. | |
12 message SettingsMessage { | |
13 optional EngineSettingsMessage engine_settings = 1; | |
14 optional ClientSettingsMessage client_settings = 2; | |
15 } | |
16 | |
17 // Client ==> Engine Settings | |
18 message EngineSettingsMessage { | |
19 | |
20 // -----------------------Web Preferences---------------------- | |
21 optional bool record_whole_document = 1; | |
22 } | |
23 | |
24 message ClientSettingsMessage { | |
haibinlu
2016/03/21 18:25:22
what global settings will Engine send to Client?
Khushal
2016/03/22 04:11:42
We don't have any settings that need to be sent to
| |
25 // Placeholder for Engine ==> Client settings. | |
26 } | |
OLD | NEW |