| Index: chrome/app/mash/mash_runner.cc
|
| diff --git a/chrome/app/mash/mash_runner.cc b/chrome/app/mash/mash_runner.cc
|
| index 27a940af69be10fe6d50ffeb92438d56c380a593..20e88d35ed487a31ad700d8366094e877d229ad2 100644
|
| --- a/chrome/app/mash/mash_runner.cc
|
| +++ b/chrome/app/mash/mash_runner.cc
|
| @@ -16,7 +16,7 @@
|
| #include "base/process/launch.h"
|
| #include "components/mus/mus_app.h"
|
| #include "content/public/common/content_switches.h"
|
| -#include "mash/browser_driver/browser_driver_application_delegate.h"
|
| +#include "mash/app_driver/app_driver_application_delegate.h"
|
| #include "mash/quick_launch/quick_launch_application.h"
|
| #include "mash/session/session.h"
|
| #include "mash/task_viewer/task_viewer.h"
|
| @@ -100,9 +100,9 @@ class DefaultShellClient : public shell::ShellClient,
|
| if (name == "mojo:font_service")
|
| return base::WrapUnique(new font_service::FontServiceApp);
|
| #endif
|
| - if (name == "mojo:browser_driver") {
|
| + if (name == "mojo:app_driver") {
|
| return base::WrapUnique(
|
| - new mash::browser_driver::BrowserDriverApplicationDelegate());
|
| + new mash::app_driver::AppDriverApplicationDelegate());
|
| }
|
| return nullptr;
|
| }
|
|
|