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

Side by Side Diff: cc/proto/display_list_recording_source.proto

Issue 1512823002: Serialize DisplayListRecordingSource to protos. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix test refactor bugs Created 5 years 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.
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 import "display_item.proto";
8 import "rect.proto";
9 import "size.proto";
10
11 option optimize_for = LITE_RUNTIME;
12
13 package cc.proto;
14
15 message DisplayListRecordingSource {
16 optional Rect recorded_viewport = 1;
17 optional Size size = 2;
18 optional int64 slow_down_raster_scale_factor_for_debug = 3;
19 optional bool generate_discardable_images_metadata = 4;
20 optional bool requires_clear = 5;
21 optional bool is_solid_color = 6;
22 optional bool clear_canvas_with_debug_color = 7;
23 optional uint64 solid_color = 8;
24 optional uint64 background_color = 9;
25 optional DisplayItemList display_list = 10;
26 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698