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

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

Issue 1946403003: Add fixed raster scale use counter histograms. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 syntax = "proto2"; 5 syntax = "proto2";
6 6
7 import "layer_position_constraint.proto"; 7 import "layer_position_constraint.proto";
8 import "point3f.proto"; 8 import "point3f.proto";
9 import "pointf.proto"; 9 import "pointf.proto";
10 import "recording_source.proto"; 10 import "recording_source.proto";
(...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 116
117 optional int32 scroll_parent_id = 40; 117 optional int32 scroll_parent_id = 40;
118 repeated int32 scroll_children_ids = 41; 118 repeated int32 scroll_children_ids = 41;
119 119
120 optional int32 clip_parent_id = 42; 120 optional int32 clip_parent_id = 42;
121 repeated int32 clip_children_ids = 43; 121 repeated int32 clip_children_ids = 43;
122 122
123 optional ScrollOffset scroll_offset = 44; 123 optional ScrollOffset scroll_offset = 44;
124 124
125 optional Rect update_rect = 46; 125 optional Rect update_rect = 46;
126 optional bool has_will_change_transform_hint = 48;
danakj 2016/05/10 22:05:30 move up with other simple properties. line 112?
vmpstr 2016/05/13 00:13:34 I kind of prefer if this file's fields remained in
126 127
127 // TODO(nyquist): Figure out what to do with LayerAnimationController. 128 // TODO(nyquist): Figure out what to do with LayerAnimationController.
128 // optional LayerAnimationController layer_animation_controller = 48; 129 // optional LayerAnimationController layer_animation_controller = ???;
129
130 // TODO(nyquist): Figure out what to do with FrameTimingRequests.
131 // repeated FrameTimingRequest frame_timing_requests = 49;
132 } 130 }
133 131
134 message PictureLayerProperties { 132 message PictureLayerProperties {
135 optional RecordingSource recording_source = 1; 133 optional RecordingSource recording_source = 1;
136 optional Region invalidation = 2; 134 optional Region invalidation = 2;
137 optional Rect last_updated_visible_layer_rect = 3; 135 optional Rect last_updated_visible_layer_rect = 3;
138 optional bool is_mask = 4; 136 optional bool is_mask = 4;
139 optional bool nearest_neighbor = 5; 137 optional bool nearest_neighbor = 5;
140 138
141 optional int64 update_source_frame_number = 6; 139 optional int64 update_source_frame_number = 6;
142 } 140 }
143 141
144 message SolidColorScrollbarLayerProperties { 142 message SolidColorScrollbarLayerProperties {
145 enum ScrollbarOrientation { 143 enum ScrollbarOrientation {
146 HORIZONTAL = 0; 144 HORIZONTAL = 0;
147 VERTICAL = 1; 145 VERTICAL = 1;
148 }; 146 };
149 147
150 optional int32 scroll_layer_id = 1; 148 optional int32 scroll_layer_id = 1;
151 optional int32 thumb_thickness = 2; 149 optional int32 thumb_thickness = 2;
152 optional int32 track_start = 3; 150 optional int32 track_start = 3;
153 optional bool is_left_side_vertical_scrollbar = 4; 151 optional bool is_left_side_vertical_scrollbar = 4;
154 optional ScrollbarOrientation orientation = 5; 152 optional ScrollbarOrientation orientation = 5;
155 } 153 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698