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

Unified Diff: ash/sysui/sysui_application.h

Issue 2323063003: mash: Port sysui's WallpaperDelegateMus to mojo:ash. (Closed)
Patch Set: Alternative display info workaround. Created 4 years, 3 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: ash/sysui/sysui_application.h
diff --git a/ash/sysui/sysui_application.h b/ash/sysui/sysui_application.h
index 79b07b073066a798a2463e284e6784850cca3453..2873e391d1e8013367eac603763c9eaa2799f22d 100644
--- a/ash/sysui/sysui_application.h
+++ b/ash/sysui/sysui_application.h
@@ -7,7 +7,6 @@
#include <memory>
-#include "ash/public/interfaces/wallpaper.mojom.h"
#include "base/macros.h"
#include "mojo/public/cpp/bindings/binding_set.h"
#include "services/shell/public/cpp/service.h"
@@ -19,9 +18,7 @@ namespace sysui {
class AshInit;
-class SysUIApplication
- : public shell::Service,
- public shell::InterfaceFactory<mojom::WallpaperController> {
+class SysUIApplication : public shell::Service {
public:
SysUIApplication();
~SysUIApplication() override;
@@ -32,15 +29,9 @@ class SysUIApplication
bool OnConnect(const ::shell::Identity& remote_identity,
::shell::InterfaceRegistry* registry) override;
- // InterfaceFactory<mojom::WallpaperController>:
- void Create(const shell::Identity& remote_identity,
- mojom::WallpaperControllerRequest request) override;
-
tracing::Provider tracing_;
std::unique_ptr<AshInit> ash_init_;
- mojo::BindingSet<mojom::WallpaperController> wallpaper_controller_bindings_;
-
// Subscribes to updates about input-devices.
ui::InputDeviceClient input_device_client_;

Powered by Google App Engine
This is Rietveld 408576698