Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1041)

Side by Side Diff: ui/aura/window_port_local.cc

Issue 2632543003: Refactor and push window properties up to class properties. (Closed)
Patch Set: More build fixes Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « ui/aura/window_port_local.h ('k') | ui/aura/window_property.h » ('j') | ui/base/class_property.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698