| 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 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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<ui::PropertyData> 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 int64_t old_value, |
| 89 std::unique_ptr<ui::PropertyData> data) {} | 90 std::unique_ptr<ui::PropertyData> data) {} |
| 90 | 91 |
| 91 } // namespace aura | 92 } // namespace aura |
| OLD | NEW |