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

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 network_service_loader 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 6c145534d32db2eabd8c7740c739c702e51d95ce..39f7ecf496142b01bff4a7fb5d228040c9bee86b 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
@@ -22,14 +22,14 @@ class ApplicationConnection;
namespace view_manager {
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