| 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 #include "ui/ozone/common/native_display_delegate_ozone.h" | 5 #include "ui/ozone/common/native_display_delegate_ozone.h" |
| 6 | 6 |
| 7 #include "base/logging.h" | 7 #include "base/logging.h" |
| 8 #include "base/memory/ptr_util.h" | 8 #include "base/memory/ptr_util.h" |
| 9 #include "ui/ozone/common/display_snapshot_proxy.h" | 9 #include "ui/ozone/common/display_snapshot_proxy.h" |
| 10 #include "ui/ozone/common/display_util.h" | 10 #include "ui/ozone/common/display_util.h" |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 | 122 |
| 123 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { | 123 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { |
| 124 NOTIMPLEMENTED(); | 124 NOTIMPLEMENTED(); |
| 125 } | 125 } |
| 126 | 126 |
| 127 void NativeDisplayDelegateOzone::RemoveObserver( | 127 void NativeDisplayDelegateOzone::RemoveObserver( |
| 128 NativeDisplayObserver* observer) { | 128 NativeDisplayObserver* observer) { |
| 129 NOTIMPLEMENTED(); | 129 NOTIMPLEMENTED(); |
| 130 } | 130 } |
| 131 | 131 |
| 132 display::FakeDisplayController* |
| 133 NativeDisplayDelegateOzone::GetFakeDisplayController() { |
| 134 return nullptr; |
| 135 } |
| 136 |
| 132 } // namespace ui | 137 } // namespace ui |
| OLD | NEW |