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

Unified Diff: chrome/browser/ui/views/frame/immersive_context_mus.h

Issue 2578893003: Converts chrome to aura-mus (Closed)
Patch Set: merge 2 trunk Created 4 years 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/ui/views/frame/immersive_context_mus.h
diff --git a/chrome/browser/ui/views/frame/immersive_context_mus.h b/chrome/browser/ui/views/frame/immersive_context_mus.h
index 503d1bacd05be35809419733469a59d41fe7878e..e612e2089d4a83ca247a6d40ff85a65e40c8301f 100644
--- a/chrome/browser/ui/views/frame/immersive_context_mus.h
+++ b/chrome/browser/ui/views/frame/immersive_context_mus.h
@@ -8,9 +8,15 @@
#include "ash/shared/immersive_context.h"
#include "base/macros.h"
+namespace aura {
+namespace client {
+class CaptureClient;
+}
+}
+
class ImmersiveContextMus : public ash::ImmersiveContext {
public:
- ImmersiveContextMus();
+ explicit ImmersiveContextMus(aura::client::CaptureClient* capture_client);
~ImmersiveContextMus() override;
// ash::ImmersiveContext:
@@ -27,6 +33,8 @@ class ImmersiveContextMus : public ash::ImmersiveContext {
bool IsMouseEventsEnabled() override;
private:
+ aura::client::CaptureClient* capture_client_;
+
DISALLOW_COPY_AND_ASSIGN(ImmersiveContextMus);
};

Powered by Google App Engine
This is Rietveld 408576698