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

Unified Diff: mojo/services/view_manager/view_manager_unittest.cc

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/view_manager/view_manager_unittest.cc
diff --git a/mojo/services/view_manager/view_manager_unittest.cc b/mojo/services/view_manager/view_manager_unittest.cc
index 73153737e56b037d7e0447f7a4f0039bbab139c5..23e07700cacc4edc1995abb1b4230992da7b1a84 100644
--- a/mojo/services/view_manager/view_manager_unittest.cc
+++ b/mojo/services/view_manager/view_manager_unittest.cc
@@ -307,8 +307,7 @@ bool ViewManagerProxy::in_embed_ = false;
class TestViewManagerClientConnection
: public InterfaceImpl<ViewManagerClient> {
public:
- TestViewManagerClientConnection(ApplicationConnection* app_connection) :
- connection_(&tracker_) {
+ explicit TestViewManagerClientConnection() : connection_(&tracker_) {
tracker_.set_delegate(&connection_);
}
@@ -376,12 +375,14 @@ class TestViewManagerClientConnection
// Used with ViewManagerService::Embed(). Creates a
// TestViewManagerClientConnection, which creates and owns the ViewManagerProxy.
-class EmbedServiceLoader : public ServiceLoader, ApplicationDelegate {
+class EmbedServiceLoader : public ServiceLoader,
+ ApplicationDelegate,
+ public InterfaceFactory<ViewManagerClient> {
public:
EmbedServiceLoader() {}
virtual ~EmbedServiceLoader() {}
- // ServiceLoader:
+ // ServiceLoader implementation:
virtual void LoadService(ServiceManager* manager,
const GURL& url,
ScopedMessagePipeHandle shell_handle) OVERRIDE {
@@ -393,13 +394,19 @@ class EmbedServiceLoader : public ServiceLoader, ApplicationDelegate {
const GURL& url) OVERRIDE {
}
- // ApplicationDelegate
+ // ApplicationDelegate implementation:
virtual bool ConfigureIncomingConnection(ApplicationConnection* connection)
OVERRIDE {
- connection->AddService<TestViewManagerClientConnection>();
+ connection->AddService(this);
return true;
}
+ // InterfaceFactory<ViewManagerClient> implementation:
+ virtual void Create(ApplicationConnection* connection,
+ InterfaceRequest<ViewManagerClient> request) OVERRIDE {
+ BindToRequest(new TestViewManagerClientConnection, &request);
+ }
+
private:
ScopedVector<ApplicationImpl> apps_;
@@ -506,8 +513,8 @@ class ViewManagerTest : public testing::Test {
}
base::ShadowingAtExitManager at_exit_;
- base::MessageLoop loop_;
shell::ShellTestHelper test_helper_;
+ base::MessageLoop loop_;
ViewManagerInitServicePtr view_manager_init_;

Powered by Google App Engine
This is Rietveld 408576698