Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 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 #include "ui/display/mojo/display_mode_mojo.h" | |
| 6 #include "ui/gfx/geometry/size.h" | |
| 7 | |
| 8 namespace display { | |
| 9 | |
| 10 DisplayModeMojo::DisplayModeMojo(): DisplayMode(gfx::Size(), false, 0.0) {}; | |
|
kylechar
2017/01/24 21:15:07
No ; after.
thanhph1
2017/01/25 16:26:16
Done.
| |
| 11 | |
| 12 DisplayModeMojo::~DisplayModeMojo() {} | |
| 13 | |
| 14 } // namespace display | |
| OLD | NEW |