| 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_);
|
|
|