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

Side by Side Diff: chrome/browser/ui/views/frame/immersive_handler_factory_mus.h

Issue 2277563002: Wires up immersive mode for chrome and mash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: feedback Created 4 years, 4 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_HANDLER_FACTORY_MUS_H_
6 #define CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_HANDLER_FACTORY_MUS_H_
7
8 #include "ash/shared/immersive_handler_factory.h"
9 #include "base/macros.h"
10
11 class ImmersiveHandlerFactoryMus : public ash::ImmersiveHandlerFactory {
12 public:
13 ImmersiveHandlerFactoryMus();
14 ~ImmersiveHandlerFactoryMus() override;
15
16 // ImmersiveHandlerFactory:
17 std::unique_ptr<ash::ImmersiveFocusWatcher> CreateFocusWatcher(
18 ash::ImmersiveFullscreenController* controller) override;
19 std::unique_ptr<ash::ImmersiveGestureHandler> CreateGestureHandler(
20 ash::ImmersiveFullscreenController* controller) override;
21
22 private:
23 DISALLOW_COPY_AND_ASSIGN(ImmersiveHandlerFactoryMus);
24 };
25
26 #endif // CHROME_BROWSER_UI_VIEWS_FRAME_IMMERSIVE_HANDLER_FACTORY_MUS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698