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

Side by Side Diff: mojo/services/view_manager/node.cc

Issue 354933002: Connect X11 ConfigureNotify events to Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed double-notification for node bounds changes Created 6 years, 5 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 | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « mojo/services/native_viewport/native_viewport_x11.cc ('k') | mojo/services/view_manager/node_delegate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698