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

Unified Diff: mojo/services/view_manager/view_manager_connection.h

Issue 258623005: First step at synchronizing client model changes with service. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 8 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
Index: mojo/services/view_manager/view_manager_connection.h
diff --git a/mojo/services/view_manager/view_manager_connection.h b/mojo/services/view_manager/view_manager_connection.h
index 974e0332c2848554f79d6cbe69d223d99f102e3d..413bc961904df69146e632037aa5ec7c7488bbb3 100644
--- a/mojo/services/view_manager/view_manager_connection.h
+++ b/mojo/services/view_manager/view_manager_connection.h
@@ -23,7 +23,7 @@ class View;
// Manages a connection from the client.
class MOJO_VIEW_MANAGER_EXPORT ViewManagerConnection
- : public ServiceConnection<ViewManager, ViewManagerConnection,
+ : public ServiceConnection<IViewManager, ViewManagerConnection,
RootNodeManager>,
public NodeDelegate {
public:
@@ -74,7 +74,7 @@ class MOJO_VIEW_MANAGER_EXPORT ViewManagerConnection
const ViewId& view_id,
int32_t change_id);
- // Overridden from ViewManager:
+ // Overridden from IViewManager:
virtual void CreateNode(uint16_t node_id,
const Callback<void(bool)>& callback) OVERRIDE;
virtual void DeleteNode(uint32_t transport_node_id,
@@ -98,7 +98,7 @@ class MOJO_VIEW_MANAGER_EXPORT ViewManagerConnection
int32_t change_id,
const mojo::Callback<void(bool)>& callback) OVERRIDE;
- // Overriden from NodeDelegate:
+ // Overridden from NodeDelegate:
virtual void OnNodeHierarchyChanged(const NodeId& node,
const NodeId& new_parent,
const NodeId& old_parent) OVERRIDE;

Powered by Google App Engine
This is Rietveld 408576698