Scott Violet | 0f6bb090 | 2018-01-27 19:43:17 | [diff] [blame] | 1 | // Copyright 2018 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 | #ifndef CONTENT_COMMON_FRAME_MESSAGE_STRUCTS_H_ |
| 6 | #define CONTENT_COMMON_FRAME_MESSAGE_STRUCTS_H_ |
| 7 | |
Scott Violet | 0f6bb090 | 2018-01-27 19:43:17 | [diff] [blame] | 8 | #include "components/viz/common/surfaces/frame_sink_id.h" |
| 9 | #include "content/common/content_export.h" |
| 10 | |
| 11 | namespace content { |
| 12 | |
| 13 | struct CONTENT_EXPORT FrameMsg_ViewChanged_Params { |
| 14 | FrameMsg_ViewChanged_Params(); |
| 15 | ~FrameMsg_ViewChanged_Params(); |
| 16 | |
Scott Violet | 869c047d | 2019-05-03 20:49:41 | [diff] [blame] | 17 | viz::FrameSinkId frame_sink_id; |
Scott Violet | 0f6bb090 | 2018-01-27 19:43:17 | [diff] [blame] | 18 | }; |
| 19 | |
| 20 | } // namespace content |
| 21 | |
| 22 | #endif // CONTENT_COMMON_FRAME_MESSAGE_STRUCTS_H_ |