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

Side by Side Diff: mojo/services/view_manager/node_delegate.h

Issue 284113008: Cleanup of ViewManager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge to trunk Created 6 years, 7 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
« no previous file with comments | « mojo/services/view_manager/node.cc ('k') | mojo/services/view_manager/root_node_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #ifndef MOJO_SERVICES_VIEW_MANAGER_NODE_DELEGATE_H_ 5 #ifndef MOJO_SERVICES_VIEW_MANAGER_NODE_DELEGATE_H_
6 #define MOJO_SERVICES_VIEW_MANAGER_NODE_DELEGATE_H_ 6 #define MOJO_SERVICES_VIEW_MANAGER_NODE_DELEGATE_H_
7 7
8 #include "mojo/services/view_manager/view_manager_export.h" 8 #include "mojo/services/view_manager/view_manager_export.h"
9 9
10 namespace mojo { 10 namespace mojo {
11 namespace view_manager { 11 namespace view_manager {
12 namespace service { 12 namespace service {
13 13
14 struct NodeId; 14 class Node;
15 struct ViewId; 15 class View;
16 16
17 class MOJO_VIEW_MANAGER_EXPORT NodeDelegate { 17 class MOJO_VIEW_MANAGER_EXPORT NodeDelegate {
18 public: 18 public:
19 // Invoked when the hierarchy has changed. 19 // Invoked when the hierarchy has changed.
20 virtual void OnNodeHierarchyChanged(const NodeId& node, 20 virtual void OnNodeHierarchyChanged(const Node* node,
21 const NodeId& new_parent, 21 const Node* new_parent,
22 const NodeId& old_parent) = 0; 22 const Node* old_parent) = 0;
23 23
24 // Invoked when the View associated with a node changes. 24 // Invoked when the View associated with a node changes.
25 virtual void OnNodeViewReplaced(const NodeId& node, 25 virtual void OnNodeViewReplaced(const Node* node,
26 const ViewId& new_view_id, 26 const View* new_view,
27 const ViewId& old_view_id) = 0; 27 const View* old_view) = 0;
28 28
29 protected: 29 protected:
30 virtual ~NodeDelegate() {} 30 virtual ~NodeDelegate() {}
31 }; 31 };
32 32
33 } // namespace service 33 } // namespace service
34 } // namespace view_manager 34 } // namespace view_manager
35 } // namespace mojo 35 } // namespace mojo
36 36
37 #endif // MOJO_SERVICES_VIEW_MANAGER_NODE_DELEGATE_H_ 37 #endif // MOJO_SERVICES_VIEW_MANAGER_NODE_DELEGATE_H_
OLDNEW
« no previous file with comments | « mojo/services/view_manager/node.cc ('k') | mojo/services/view_manager/root_node_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698