Chromium Code Reviews| 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 module display.mojom; | 5 module display.mojom; |
| 6 | 6 |
| 7 import "ui/display/mojo/display.mojom"; | 7 import "ui/display/mojo/display.mojom"; |
| 8 import "ui/display/mojo/display_layout.mojom"; | 8 import "ui/display/mojo/display_layout.mojom"; |
| 9 import "ui/display/mojo/display_mode.mojom"; | 9 import "ui/display/mojo/display_mode.mojom"; |
| 10 import "ui/display/mojo/display_snapshot_mojo.mojom"; | |
| 10 | 11 |
| 11 interface DisplayStructTraitsTest { | 12 interface DisplayStructTraitsTest { |
| 12 [Sync] | 13 [Sync] |
| 13 EchoDisplay(Display in) => (Display out); | 14 EchoDisplay(Display in) => (Display out); |
| 14 | 15 |
| 15 [Sync] | 16 [Sync] |
| 16 EchoDisplayMode(DisplayMode in) => (DisplayMode out); | 17 EchoDisplayMode(DisplayMode in) => (DisplayMode out); |
| 17 | 18 |
| 18 [Sync] | 19 [Sync] |
| 20 EchoDisplaySnapshotMojo(DisplaySnapshotMojo in) => (DisplaySnapshotMojo | |
| 21 out); | |
| 22 | |
| 23 [Sync] | |
| 19 EchoDisplayPlacement(DisplayPlacement in) => (DisplayPlacement out); | 24 EchoDisplayPlacement(DisplayPlacement in) => (DisplayPlacement out); |
| 20 | 25 |
| 21 [Sync] | 26 [Sync] |
| 22 EchoDisplayLayout(DisplayLayout in) => (DisplayLayout out); | 27 EchoDisplayLayout(DisplayLayout in) => (DisplayLayout out); |
| 23 }; | 28 }; |
|
Daniel Erat
2017/03/07 23:47:01
i'm not sure what rietveld's highlighting of this
thanhph
2017/03/08 00:19:23
The old file doesn't have this newline so I remove
| |
| OLD | NEW |