| Index: mojo/shell/capability_filter_test.cc
|
| diff --git a/mojo/shell/capability_filter_test.cc b/mojo/shell/capability_filter_test.cc
|
| index 8f294dd7552a294ff40499f39d9f025584bcb3ec..a5a8bb0f752bbb7d546061fb5e45d408fe601150 100644
|
| --- a/mojo/shell/capability_filter_test.cc
|
| +++ b/mojo/shell/capability_filter_test.cc
|
| @@ -51,7 +51,8 @@ class ConnectionValidator : public ApplicationLoader,
|
|
|
| private:
|
| // Overridden from ApplicationLoader:
|
| - void Load(const GURL& url, InterfaceRequest<Application> request) override {
|
| + void Load(const GURL& url,
|
| + InterfaceRequest<mojom::Application> request) override {
|
| app_.reset(new ApplicationImpl(this, std::move(request)));
|
| }
|
|
|
| @@ -194,7 +195,7 @@ TestLoader::TestLoader(ApplicationDelegate* delegate) : delegate_(delegate) {}
|
| TestLoader::~TestLoader() {}
|
|
|
| void TestLoader::Load(const GURL& url,
|
| - InterfaceRequest<Application> request) {
|
| + InterfaceRequest<mojom::Application> request) {
|
| app_.reset(new ApplicationImpl(delegate_.get(), std::move(request)));
|
| }
|
|
|
|
|