| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "vector2d.proto"; | 7 import "vector2d.proto"; |
| 8 import "vector2df.proto"; | 8 import "vector2df.proto"; |
| 9 | 9 |
| 10 option optimize_for = LITE_RUNTIME; | 10 option optimize_for = LITE_RUNTIME; |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 optional BeginFrameArgsType type = 4; | 40 optional BeginFrameArgsType type = 4; |
| 41 optional bool on_critical_path = 5; | 41 optional bool on_critical_path = 5; |
| 42 } | 42 } |
| 43 | 43 |
| 44 message BeginMainFrameAndCommitState { | 44 message BeginMainFrameAndCommitState { |
| 45 optional int64 begin_frame_id = 1; | 45 optional int64 begin_frame_id = 1; |
| 46 optional BeginFrameArgs begin_frame_args = 2; | 46 optional BeginFrameArgs begin_frame_args = 2; |
| 47 optional ScrollAndScaleSet scroll_info = 3; | 47 optional ScrollAndScaleSet scroll_info = 3; |
| 48 optional int64 memory_allocation_limit_bytes = 4; | 48 optional int64 memory_allocation_limit_bytes = 4; |
| 49 optional bool evicted_ui_resources = 5; | 49 optional bool evicted_ui_resources = 5; |
| 50 } | 50 optional bool has_fixed_raster_scale_blurry_content = 6; |
| 51 optional bool has_fixed_raster_scale_potential_performance_regression = 7; |
| 52 } |
| OLD | NEW |