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

Unified Diff: chrome/browser/chromeos/chrome_interface_factory.cc

Issue 2235493002: mash: Disable ash_sysui; begin removal. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup. Created 4 years, 4 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/browser/chromeos/chrome_interface_factory.cc
diff --git a/chrome/browser/chromeos/chrome_interface_factory.cc b/chrome/browser/chromeos/chrome_interface_factory.cc
index 344d404dec38ea60e0f1e28bd2b320717c4c8d23..bd79722c180f15c1f417c1d71814e63a2c5ddf46 100644
--- a/chrome/browser/chromeos/chrome_interface_factory.cc
+++ b/chrome/browser/chromeos/chrome_interface_factory.cc
@@ -6,7 +6,7 @@
#include <memory>
-#include "ash/sysui/public/interfaces/wallpaper.mojom.h"
+#include "ash/public/interfaces/wallpaper.mojom.h"
#include "base/lazy_instance.h"
#include "base/memory/weak_ptr.h"
#include "base/threading/thread_checker.h"
@@ -113,7 +113,7 @@ class FactoryImpl {
launchable_->ProcessRequest(std::move(request));
}
- void BindRequest(ash::sysui::mojom::WallpaperManagerRequest request) {
+ void BindRequest(ash::mojom::WallpaperManagerRequest request) {
if (!wallpaper_manager_)
wallpaper_manager_.reset(new ChromeWallpaperManager);
wallpaper_manager_->ProcessRequest(std::move(request));
@@ -156,7 +156,7 @@ bool ChromeInterfaceFactory::OnConnect(const shell::Identity& remote_identity,
main_thread_task_runner_);
FactoryImpl::AddFactory<mash::mojom::Launchable>(registry,
main_thread_task_runner_);
- FactoryImpl::AddFactory<ash::sysui::mojom::WallpaperManager>(
+ FactoryImpl::AddFactory<ash::mojom::WallpaperManager>(
registry, main_thread_task_runner_);
FactoryImpl::AddFactory<app_list::mojom::AppListPresenter>(
registry, main_thread_task_runner_);

Powered by Google App Engine
This is Rietveld 408576698