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

Unified Diff: chrome/app/mash/mash_runner.cc

Issue 1989333003: mash: Rename browser_driver to app_driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: 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;
}

Powered by Google App Engine
This is Rietveld 408576698