| 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 "mojo/services/view_manager/node.h" | 5 #include "mojo/services/view_manager/node.h" |
| 6 | 6 |
| 7 #include "mojo/services/view_manager/node_delegate.h" | 7 #include "mojo/services/view_manager/node_delegate.h" |
| 8 #include "mojo/services/view_manager/view.h" | 8 #include "mojo/services/view_manager/view.h" |
| 9 #include "ui/aura/window_property.h" | 9 #include "ui/aura/window_property.h" |
| 10 #include "ui/base/cursor/cursor.h" | 10 #include "ui/base/cursor/cursor.h" |
| (...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 gfx::Size Node::GetMinimumSize() const { | 139 gfx::Size Node::GetMinimumSize() const { |
| 140 return gfx::Size(); | 140 return gfx::Size(); |
| 141 } | 141 } |
| 142 | 142 |
| 143 gfx::Size Node::GetMaximumSize() const { | 143 gfx::Size Node::GetMaximumSize() const { |
| 144 return gfx::Size(); | 144 return gfx::Size(); |
| 145 } | 145 } |
| 146 | 146 |
| 147 void Node::OnBoundsChanged(const gfx::Rect& old_bounds, | 147 void Node::OnBoundsChanged(const gfx::Rect& old_bounds, |
| 148 const gfx::Rect& new_bounds) { | 148 const gfx::Rect& new_bounds) { |
| 149 delegate_->OnNodeBoundsChanged(this, old_bounds, new_bounds); | |
| 150 } | 149 } |
| 151 | 150 |
| 152 gfx::NativeCursor Node::GetCursor(const gfx::Point& point) { | 151 gfx::NativeCursor Node::GetCursor(const gfx::Point& point) { |
| 153 return gfx::kNullCursor; | 152 return gfx::kNullCursor; |
| 154 } | 153 } |
| 155 | 154 |
| 156 int Node::GetNonClientComponent(const gfx::Point& point) const { | 155 int Node::GetNonClientComponent(const gfx::Point& point) const { |
| 157 return HTCAPTION; | 156 return HTCAPTION; |
| 158 } | 157 } |
| 159 | 158 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 } | 196 } |
| 198 | 197 |
| 199 void Node::OnEvent(ui::Event* event) { | 198 void Node::OnEvent(ui::Event* event) { |
| 200 if (view_) | 199 if (view_) |
| 201 delegate_->OnViewInputEvent(view_, event); | 200 delegate_->OnViewInputEvent(view_, event); |
| 202 } | 201 } |
| 203 | 202 |
| 204 } // namespace service | 203 } // namespace service |
| 205 } // namespace view_manager | 204 } // namespace view_manager |
| 206 } // namespace mojo | 205 } // namespace mojo |
| OLD | NEW |