OLD | NEW |
| (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 package cc.proto; | |
8 | |
9 option optimize_for = LITE_RUNTIME; | |
10 | |
11 message LayerTreeDebugState { | |
12 optional bool show_fps_counter = 1; | |
13 optional bool show_debug_borders = 2; | |
14 | |
15 optional bool show_paint_rects = 3; | |
16 optional bool show_property_changed_rects = 4; | |
17 optional bool show_surface_damage_rects = 5; | |
18 optional bool show_screen_space_rects = 6; | |
19 optional bool show_touch_event_handler_rects = 8; | |
20 optional bool show_wheel_event_handler_rects = 9; | |
21 optional bool show_scroll_event_handler_rects = 10; | |
22 optional bool show_non_fast_scrollable_rects = 11; | |
23 optional bool show_layer_animation_bounds_rects = 12; | |
24 | |
25 optional int32 slow_down_raster_scale_factor = 13; | |
26 optional bool rasterize_only_visible_content = 14; | |
27 optional bool show_picture_borders = 15; | |
28 | |
29 optional bool record_rendering_stats = 16; | |
30 } | |
OLD | NEW |