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

Unified Diff: mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.h

Issue 288313002: Tweaks to ViewManager: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.h
diff --git a/mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.h b/mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.h
index 1063a50977f50bf174dafd961f5512ce088e4aae..1a505836977093127944711cc405b537b19f3a5c 100644
--- a/mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.h
+++ b/mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.h
@@ -55,12 +55,16 @@ class ViewManagerSynchronizer : public IViewManagerClient {
// Overridden from IViewManagerClient:
virtual void OnConnectionEstablished(
TransportConnectionId connection_id,
- TransportChangeId next_server_change_id) OVERRIDE;
+ TransportChangeId next_server_change_id,
+ const mojo::Array<INode>& nodes) OVERRIDE;
+ virtual void OnServerChangeIdAdvanced(
+ uint32_t next_server_change_id) OVERRIDE;
virtual void OnNodeHierarchyChanged(
uint32 node_id,
uint32 new_parent_id,
uint32 old_parent_id,
- TransportChangeId server_change_id) OVERRIDE;
+ TransportChangeId server_change_id,
+ const mojo::Array<INode>& nodes) OVERRIDE;
virtual void OnNodeDeleted(TransportNodeId node_id,
TransportChangeId server_change_id) OVERRIDE;
virtual void OnNodeViewReplaced(uint32_t node,
@@ -76,8 +80,6 @@ class ViewManagerSynchronizer : public IViewManagerClient {
// front of the queue.
void RemoveFromPendingQueue(ViewManagerTransaction* transaction);
- void OnRootTreeReceived(const Array<INode>& data);
-
ViewManager* view_manager_;
bool connected_;
TransportConnectionId connection_id_;
« no previous file with comments | « mojo/mojo_services.gypi ('k') | mojo/services/public/cpp/view_manager/lib/view_manager_synchronizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698