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

Unified Diff: ash/mus/shell_delegate_mus.h

Issue 1760743002: Add simple mash context menu support. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase; use test items; cleanup. Created 4 years, 9 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/mus/shell_delegate_mus.h
diff --git a/ash/mus/shell_delegate_mus.h b/ash/mus/shell_delegate_mus.h
index 804663dc2f69c998ecdf43eed9bc3c05561db761..545f7ccc2e8e23b5356c02628ea6e09b74d2d441 100644
--- a/ash/mus/shell_delegate_mus.h
+++ b/ash/mus/shell_delegate_mus.h
@@ -15,12 +15,16 @@ namespace keyboard {
class KeyboardUI;
}
+namespace mojo {
+class Connector;
+}
+
namespace ash {
namespace sysui {
class ShellDelegateMus : public ash::ShellDelegate {
public:
- ShellDelegateMus();
+ explicit ShellDelegateMus(mojo::Connector* connector);
~ShellDelegateMus() override;
bool IsFirstRunAfterBoot() const override;
@@ -53,6 +57,8 @@ class ShellDelegateMus : public ash::ShellDelegate {
gfx::Image GetDeprecatedAcceleratorImage() const override;
private:
+ mojo::Connector* connector_;
+
DISALLOW_COPY_AND_ASSIGN(ShellDelegateMus);
};

Powered by Google App Engine
This is Rietveld 408576698