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

Side by Side Diff: blimp/common/proto/settings.proto

Issue 1810213009: blimp: Add settings to allow the client to download the whole page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@record_full_document
Patch Set: Created 4 years, 9 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 unified diff | Download patch
OLDNEW
(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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698