| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 // Multiply-included message file, hence no include guard here, but see below | 5 // Multiply-included message file, hence no include guard here, but see below |
| 6 // for a much smaller-than-usual include guard section. | 6 // for a much smaller-than-usual include guard section. |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/file_descriptor_posix.h" | 10 #include "base/file_descriptor_posix.h" |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 // Browser Messages | 106 // Browser Messages |
| 107 // These messages are from the GPU to the browser process. | 107 // These messages are from the GPU to the browser process. |
| 108 | 108 |
| 109 // Updates the list of active displays. | 109 // Updates the list of active displays. |
| 110 IPC_MESSAGE_CONTROL1(OzoneHostMsg_UpdateNativeDisplays, | 110 IPC_MESSAGE_CONTROL1(OzoneHostMsg_UpdateNativeDisplays, |
| 111 std::vector<ui::DisplaySnapshot_Params>) | 111 std::vector<ui::DisplaySnapshot_Params>) |
| 112 | 112 |
| 113 IPC_MESSAGE_CONTROL2(OzoneHostMsg_DisplayConfigured, | 113 IPC_MESSAGE_CONTROL2(OzoneHostMsg_DisplayConfigured, |
| 114 int64_t /* display_id */, | 114 int64_t /* display_id */, |
| 115 bool /* status */) | 115 bool /* status */) |
| 116 |
| 117 IPC_MESSAGE_CONTROL1(OzoneHostMsg_WindowMappingChanged, int64_t /* widget */) |
| OLD | NEW |