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

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: Fix message loop destruction order 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 69715b0316b37e8b603cb9b36c3532f2633af067..3808b41b928a7ece8484945944257694020dc0ad 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