| 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 // Message definitions for the compositor subprotocol. | |
| 6 | |
| 7 syntax = "proto2"; | |
| 8 | |
| 9 option optimize_for = LITE_RUNTIME; | |
| 10 | |
| 11 package blimp; | |
| 12 | |
| 13 message CompositorMessage { | |
| 14 // An ID that corresponds to RenderWidgetMessage.render_widget_id. | |
| 15 optional int32 render_widget_id = 1; | |
| 16 | |
| 17 // This represents a serialized CompositorMessage in | |
| 18 // cc/proto/compositor_message.proto. | |
| 19 optional bytes payload = 2; | |
| 20 } | |
| 21 | |
| OLD | NEW |