| 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 #include "ui/aura/window_port_local.h" | 5 #include "ui/aura/window_port_local.h" |
| 6 | 6 |
| 7 #include "ui/aura/client/cursor_client.h" | 7 #include "ui/aura/client/cursor_client.h" |
| 8 #include "ui/aura/env.h" | 8 #include "ui/aura/env.h" |
| 9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 10 #include "ui/aura/window_delegate.h" | 10 #include "ui/aura/window_delegate.h" |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 72 void WindowPortLocal::OnWillRemoveChild(Window* child) {} | 72 void WindowPortLocal::OnWillRemoveChild(Window* child) {} |
| 73 | 73 |
| 74 void WindowPortLocal::OnWillMoveChild(size_t current_index, size_t dest_index) { | 74 void WindowPortLocal::OnWillMoveChild(size_t current_index, size_t dest_index) { |
| 75 } | 75 } |
| 76 | 76 |
| 77 void WindowPortLocal::OnVisibilityChanged(bool visible) {} | 77 void WindowPortLocal::OnVisibilityChanged(bool visible) {} |
| 78 | 78 |
| 79 void WindowPortLocal::OnDidChangeBounds(const gfx::Rect& old_bounds, | 79 void WindowPortLocal::OnDidChangeBounds(const gfx::Rect& old_bounds, |
| 80 const gfx::Rect& new_bounds) {} | 80 const gfx::Rect& new_bounds) {} |
| 81 | 81 |
| 82 std::unique_ptr<WindowPortPropertyData> WindowPortLocal::OnWillChangeProperty( | 82 std::unique_ptr<ui::PropertyData> WindowPortLocal::OnWillChangeProperty( |
| 83 const void* key) { | 83 const void* key) { |
| 84 return nullptr; | 84 return nullptr; |
| 85 } | 85 } |
| 86 | 86 |
| 87 void WindowPortLocal::OnPropertyChanged( | 87 void WindowPortLocal::OnPropertyChanged( |
| 88 const void* key, | 88 const void* key, |
| 89 std::unique_ptr<WindowPortPropertyData> data) {} | 89 std::unique_ptr<ui::PropertyData> data) {} |
| 90 | 90 |
| 91 } // namespace aura | 91 } // namespace aura |
| OLD | NEW |