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

Unified Diff: chrome/browser/ui/views/frame/immersive_handler_factory_mus.cc

Issue 2277563002: Wires up immersive mode for chrome and mash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix crash 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/views/frame/immersive_handler_factory_mus.cc
diff --git a/chrome/browser/ui/views/frame/immersive_handler_factory_mus.cc b/chrome/browser/ui/views/frame/immersive_handler_factory_mus.cc
new file mode 100644
index 0000000000000000000000000000000000000000..5abcecb6ddafe3240e11890e55012c947ea2d274
--- /dev/null
+++ b/chrome/browser/ui/views/frame/immersive_handler_factory_mus.cc
@@ -0,0 +1,28 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "chrome/browser/ui/views/frame/immersive_handler_factory_mus.h"
+
+#include "ash/shared/immersive_focus_watcher.h"
+#include "ash/shared/immersive_gesture_handler.h"
+#include "base/logging.h"
+#include "base/memory/ptr_util.h"
+
+ImmersiveHandlerFactoryMus::ImmersiveHandlerFactoryMus() {}
+
+ImmersiveHandlerFactoryMus::~ImmersiveHandlerFactoryMus() {}
+
+std::unique_ptr<ash::ImmersiveFocusWatcher>
+ImmersiveHandlerFactoryMus::CreateFocusWatcher(
+ ash::ImmersiveFullscreenController* controller) {
+ NOTIMPLEMENTED();
+ return nullptr;
+}
+
+std::unique_ptr<ash::ImmersiveGestureHandler>
+ImmersiveHandlerFactoryMus::CreateGestureHandler(
+ ash::ImmersiveFullscreenController* controller) {
+ NOTIMPLEMENTED();
+ return nullptr;
+}

Powered by Google App Engine
This is Rietveld 408576698