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

Side by Side Diff: mojo/services/public/interfaces/view_manager/view_manager.mojom

Issue 274733004: Deletion/ownership (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . 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
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 module mojo.services.view_manager { 5 module mojo.services.view_manager {
6 6
7 struct INode { 7 struct INode {
8 uint32 parent_id; 8 uint32 parent_id;
9 uint32 node_id; 9 uint32 node_id;
10 uint32 view_id; 10 uint32 view_id;
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 uint32 new_parent, 73 uint32 new_parent,
74 uint32 old_parent, 74 uint32 old_parent,
75 uint32 change_id); 75 uint32 change_id);
76 76
77 // Invoked when the view associated with a node is replaced by another view. 77 // Invoked when the view associated with a node is replaced by another view.
78 // 0 is used to identify a null view. 78 // 0 is used to identify a null view.
79 OnNodeViewReplaced(uint32 node, 79 OnNodeViewReplaced(uint32 node,
80 uint32 new_view_id, 80 uint32 new_view_id,
81 uint32 old_view_id, 81 uint32 old_view_id,
82 uint32 change_id); 82 uint32 change_id);
83
84 // Invoked when a node is deleted.
85 OnNodeDeleted(uint32 node, uint32 change_id);
83 }; 86 };
84 87
85 } 88 }
OLDNEW
« no previous file with comments | « mojo/services/public/cpp/view_manager/view_tree_node_observer.h ('k') | mojo/services/view_manager/root_node_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698