| Index: services/test_service/test_request_tracker_application.h
|
| diff --git a/services/test_service/test_request_tracker_application.h b/services/test_service/test_request_tracker_application.h
|
| index 85aa530178096bcdc8688139a3a46b33d35472bd..eabe6cdad9f71d5a5714c4f4bbab465c04452c63 100644
|
| --- a/services/test_service/test_request_tracker_application.h
|
| +++ b/services/test_service/test_request_tracker_application.h
|
| @@ -19,7 +19,8 @@ class TestTimeService;
|
| class TestRequestTrackerApplication
|
| : public ApplicationDelegate,
|
| public InterfaceFactory<TestTimeService>,
|
| - public InterfaceFactory<TestRequestTracker> {
|
| + public InterfaceFactory<TestRequestTracker>,
|
| + public InterfaceFactory<TestTrackedRequestService> {
|
| public:
|
| TestRequestTrackerApplication();
|
| ~TestRequestTrackerApplication() override;
|
| @@ -37,13 +38,13 @@ class TestRequestTrackerApplication
|
| void Create(ApplicationConnection* connection,
|
| InterfaceRequest<TestRequestTracker> request) override;
|
|
|
| + // InterfaceFactory<TestTrackedRequestService> methods:
|
| + void Create(ApplicationConnection* connection,
|
| + InterfaceRequest<TestTrackedRequestService> request) override;
|
| +
|
| private:
|
| ApplicationImpl* app_impl_;
|
| TrackingContext context_;
|
| - typedef InterfaceFactoryImplWithContext<TestTrackedRequestServiceImpl,
|
| - TrackingContext>
|
| - TestTrackedRequestFactory;
|
| - TestTrackedRequestFactory test_tracked_request_factory_;
|
| MOJO_DISALLOW_COPY_AND_ASSIGN(TestRequestTrackerApplication);
|
| };
|
|
|
|
|