| Index: mojo/shell/tests/connect/connect_test_app.cc
|
| diff --git a/mojo/shell/tests/connect/connect_test_app.cc b/mojo/shell/tests/connect/connect_test_app.cc
|
| index 205ddcf7ffac8d9dede9568ca46beb0b6fde8edb..86ae2351da627b625431e1abd80f0b101f141872 100644
|
| --- a/mojo/shell/tests/connect/connect_test_app.cc
|
| +++ b/mojo/shell/tests/connect/connect_test_app.cc
|
| @@ -93,6 +93,9 @@ class ConnectTestApp : public ShellClient,
|
| void GetTitle(const GetTitleCallback& callback) override {
|
| callback.Run("APP");
|
| }
|
| + void GetInstance(const GetInstanceCallback& callback) override {
|
| + callback.Run(identity_.instance());
|
| + }
|
|
|
| // test::mojom::StandaloneApp:
|
| void ConnectToAllowedAppInBlockedPackage(
|
| @@ -116,9 +119,6 @@ class ConnectTestApp : public ShellClient,
|
| run_loop.Run();
|
| }
|
| }
|
| - void GetInstance(const GetInstanceCallback& callback) override {
|
| - callback.Run(identity_.instance());
|
| - }
|
|
|
| // test::mojom::BlockedInterface:
|
| void GetTitleBlocked(const GetTitleBlockedCallback& callback) override {
|
|
|