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

Unified Diff: ash/mojo_interface_factory.cc

Issue 2833093002: WIP: simplified display management in ash (Closed)
Patch Set: x Created 3 years, 8 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
« no previous file with comments | « ash/host/transformer_helper.h ('k') | ash/mus/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/mojo_interface_factory.cc
diff --git a/ash/mojo_interface_factory.cc b/ash/mojo_interface_factory.cc
index fc1f2b8ef027676821258b5f84f1a7149096439a..558eab93d0923d1fac6271e1a9675965d7c4a0fa 100644
--- a/ash/mojo_interface_factory.cc
+++ b/ash/mojo_interface_factory.cc
@@ -30,62 +30,62 @@ namespace {
void BindAcceleratorControllerRequestOnMainThread(
mojom::AcceleratorControllerRequest request) {
- Shell::Get()->accelerator_controller()->BindRequest(std::move(request));
+ // Shell::Get()->accelerator_controller()->BindRequest(std::move(request));
}
void BindAppListRequestOnMainThread(app_list::mojom::AppListRequest request) {
- Shell::Get()->app_list()->BindRequest(std::move(request));
+ // Shell::Get()->app_list()->BindRequest(std::move(request));
}
void BindCastConfigOnMainThread(mojom::CastConfigRequest request) {
- Shell::Get()->cast_config()->BindRequest(std::move(request));
+ // Shell::Get()->cast_config()->BindRequest(std::move(request));
}
void BindLocaleNotificationControllerOnMainThread(
mojom::LocaleNotificationControllerRequest request) {
- Shell::Get()->locale_notification_controller()->BindRequest(
- std::move(request));
+ // Shell::Get()->locale_notification_controller()->BindRequest(
+ // std::move(request));
}
void BindMediaControllerRequestOnMainThread(
mojom::MediaControllerRequest request) {
- Shell::Get()->media_controller()->BindRequest(std::move(request));
+ // Shell::Get()->media_controller()->BindRequest(std::move(request));
}
void BindNewWindowControllerRequestOnMainThread(
mojom::NewWindowControllerRequest request) {
- Shell::Get()->new_window_controller()->BindRequest(std::move(request));
+ // Shell::Get()->new_window_controller()->BindRequest(std::move(request));
}
void BindSessionControllerRequestOnMainThread(
mojom::SessionControllerRequest request) {
- Shell::Get()->session_controller()->BindRequest(std::move(request));
+ // Shell::Get()->session_controller()->BindRequest(std::move(request));
}
void BindShelfRequestOnMainThread(mojom::ShelfControllerRequest request) {
- Shell::Get()->shelf_controller()->BindRequest(std::move(request));
+ // Shell::Get()->shelf_controller()->BindRequest(std::move(request));
}
void BindShutdownControllerRequestOnMainThread(
mojom::ShutdownControllerRequest request) {
- Shell::Get()->shutdown_controller()->BindRequest(std::move(request));
+ // Shell::Get()->shutdown_controller()->BindRequest(std::move(request));
}
void BindSystemTrayRequestOnMainThread(mojom::SystemTrayRequest request) {
- Shell::Get()->system_tray_controller()->BindRequest(std::move(request));
+ // Shell::Get()->system_tray_controller()->BindRequest(std::move(request));
}
void BindTouchViewRequestOnMainThread(mojom::TouchViewManagerRequest request) {
- Shell::Get()->maximize_mode_controller()->BindRequest(std::move(request));
+ // Shell::Get()->maximize_mode_controller()->BindRequest(std::move(request));
}
void BindVpnListRequestOnMainThread(mojom::VpnListRequest request) {
- Shell::Get()->vpn_list()->BindRequest(std::move(request));
+ // Shell::Get()->vpn_list()->BindRequest(std::move(request));
}
void BindWallpaperRequestOnMainThread(
mojom::WallpaperControllerRequest request) {
- Shell::Get()->wallpaper_controller()->BindRequest(std::move(request));
+ // Shell::Get()->wallpaper_controller()->BindRequest(std::move(request));
}
} // namespace
« no previous file with comments | « ash/host/transformer_helper.h ('k') | ash/mus/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698