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/display/chromeos/ozone/native_display_delegate_ozone.h" | 5 #include "ui/ozone/common/chromeos/native_display_delegate_ozone.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 | 8 |
9 namespace ui { | 9 namespace ui { |
10 | 10 |
11 NativeDisplayDelegateOzone::NativeDisplayDelegateOzone() {} | 11 NativeDisplayDelegateOzone::NativeDisplayDelegateOzone() {} |
12 | 12 |
13 NativeDisplayDelegateOzone::~NativeDisplayDelegateOzone() {} | 13 NativeDisplayDelegateOzone::~NativeDisplayDelegateOzone() {} |
14 | 14 |
15 void NativeDisplayDelegateOzone::Initialize() { | 15 void NativeDisplayDelegateOzone::Initialize() { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { | 86 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) { |
87 NOTIMPLEMENTED(); | 87 NOTIMPLEMENTED(); |
88 } | 88 } |
89 | 89 |
90 void NativeDisplayDelegateOzone::RemoveObserver( | 90 void NativeDisplayDelegateOzone::RemoveObserver( |
91 NativeDisplayObserver* observer) { | 91 NativeDisplayObserver* observer) { |
92 NOTIMPLEMENTED(); | 92 NOTIMPLEMENTED(); |
93 } | 93 } |
94 | 94 |
95 } // namespace ui | 95 } // namespace ui |
OLD | NEW |