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

Unified Diff: ash/sysui/shelf_delegate_mus.h

Issue 2024313002: Moves mash/wm/public -> ash/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback 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
« no previous file with comments | « ash/sysui/manifest.json ('k') | ash/sysui/shelf_delegate_mus.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ash/sysui/shelf_delegate_mus.h
diff --git a/ash/sysui/shelf_delegate_mus.h b/ash/sysui/shelf_delegate_mus.h
index 478a2836eed9e7f716a4b851d104532dcd058a4e..4164318658d7dd89d7515e9fa5d791742f589475 100644
--- a/ash/sysui/shelf_delegate_mus.h
+++ b/ash/sysui/shelf_delegate_mus.h
@@ -7,10 +7,10 @@
#include <map>
+#include "ash/public/interfaces/shelf_layout.mojom.h"
+#include "ash/public/interfaces/user_window_controller.mojom.h"
#include "ash/shelf/shelf_delegate.h"
#include "mash/shelf/public/interfaces/shelf.mojom.h"
-#include "mash/wm/public/interfaces/shelf_layout.mojom.h"
-#include "mash/wm/public/interfaces/user_window_controller.mojom.h"
#include "mojo/public/cpp/bindings/binding.h"
#include "mojo/public/cpp/bindings/interface_ptr_set.h"
@@ -24,7 +24,7 @@ namespace sysui {
// the browser.
class ShelfDelegateMus : public ShelfDelegate,
public mash::shelf::mojom::ShelfController,
- public mash::wm::mojom::UserWindowObserver {
+ public mojom::UserWindowObserver {
public:
explicit ShelfDelegateMus(ShelfModel* model);
~ShelfDelegateMus() override;
@@ -57,10 +57,10 @@ class ShelfDelegateMus : public ShelfDelegate,
void SetItemImage(const mojo::String& app_id,
skia::mojom::BitmapPtr image) override;
- // mash::wm::mojom::UserWindowObserver:
+ // mojom::UserWindowObserver:
void OnUserWindowObserverAdded(
- mojo::Array<mash::wm::mojom::UserWindowPtr> user_windows) override;
- void OnUserWindowAdded(mash::wm::mojom::UserWindowPtr user_window) override;
+ mojo::Array<mojom::UserWindowPtr> user_windows) override;
+ void OnUserWindowAdded(mojom::UserWindowPtr user_window) override;
void OnUserWindowRemoved(uint32_t window_id) override;
void OnUserWindowTitleChanged(uint32_t window_id,
const mojo::String& window_title) override;
@@ -75,9 +75,9 @@ class ShelfDelegateMus : public ShelfDelegate,
mojo::AssociatedInterfacePtrSet<mash::shelf::mojom::ShelfObserver> observers_;
- mash::wm::mojom::ShelfLayoutPtr shelf_layout_;
- mash::wm::mojom::UserWindowControllerPtr user_window_controller_;
- mojo::Binding<mash::wm::mojom::UserWindowObserver> binding_;
+ mojom::ShelfLayoutPtr shelf_layout_;
+ mojom::UserWindowControllerPtr user_window_controller_;
+ mojo::Binding<mojom::UserWindowObserver> binding_;
std::map<uint32_t, ShelfID> window_id_to_shelf_id_;
std::map<std::string, ShelfID> app_id_to_shelf_id_;
« no previous file with comments | « ash/sysui/manifest.json ('k') | ash/sysui/shelf_delegate_mus.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698