| 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); |
| 149 } | 150 } |
| 150 | 151 |
| 151 gfx::NativeCursor Node::GetCursor(const gfx::Point& point) { | 152 gfx::NativeCursor Node::GetCursor(const gfx::Point& point) { |
| 152 return gfx::kNullCursor; | 153 return gfx::kNullCursor; |
| 153 } | 154 } |
| 154 | 155 |
| 155 int Node::GetNonClientComponent(const gfx::Point& point) const { | 156 int Node::GetNonClientComponent(const gfx::Point& point) const { |
| 156 return HTCAPTION; | 157 return HTCAPTION; |
| 157 } | 158 } |
| 158 | 159 |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 196 } | 197 } |
| 197 | 198 |
| 198 void Node::OnEvent(ui::Event* event) { | 199 void Node::OnEvent(ui::Event* event) { |
| 199 if (view_) | 200 if (view_) |
| 200 delegate_->OnViewInputEvent(view_, event); | 201 delegate_->OnViewInputEvent(view_, event); |
| 201 } | 202 } |
| 202 | 203 |
| 203 } // namespace service | 204 } // namespace service |
| 204 } // namespace view_manager | 205 } // namespace view_manager |
| 205 } // namespace mojo | 206 } // namespace mojo |
| OLD | NEW |