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

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

Issue 380413003: Mojo: Use InterfaceFactory<Interface> for service registration (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: convert everything over, remove ApplicationConnection::AddService 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 side-by-side diff with in-line comments
Download patch
Index: mojo/services/public/cpp/view_manager/lib/view_manager_client_impl.h
diff --git a/mojo/services/public/cpp/view_manager/lib/view_manager_client_impl.h b/mojo/services/public/cpp/view_manager/lib/view_manager_client_impl.h
index e1b14f29f778f19de60a2377dc05c7320cdd1f94..ad9c0783810f49f64d9e9730438e32ed88ee9079 100644
--- a/mojo/services/public/cpp/view_manager/lib/view_manager_client_impl.h
+++ b/mojo/services/public/cpp/view_manager/lib/view_manager_client_impl.h
@@ -23,14 +23,14 @@ namespace view_manager {
class ViewEventDispatcher;
class ViewManager;
+class ViewManagerDelegate;
class ViewManagerTransaction;
// Manages the connection with the View Manager service.
class ViewManagerClientImpl : public ViewManager,
public InterfaceImpl<ViewManagerClient> {
public:
- explicit ViewManagerClientImpl(ApplicationConnection* connection,
- ViewManagerDelegate* delegate);
+ explicit ViewManagerClientImpl(ViewManagerDelegate* delegate);
virtual ~ViewManagerClientImpl();
bool connected() const { return connected_; }

Powered by Google App Engine
This is Rietveld 408576698