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

Unified Diff: ui/views/win/fullscreen_handler.h

Issue 851853002: It is time. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Trying to reup because the last upload failed. Created 5 years, 11 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 | « ui/views/win/DEPS ('k') | ui/views/win/fullscreen_handler.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/win/fullscreen_handler.h
diff --git a/ui/views/win/fullscreen_handler.h b/ui/views/win/fullscreen_handler.h
deleted file mode 100644
index 4a620d5e95693dfab4bdcadd101f747dae23b549..0000000000000000000000000000000000000000
--- a/ui/views/win/fullscreen_handler.h
+++ /dev/null
@@ -1,60 +0,0 @@
-// Copyright (c) 2012 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.
-
-#ifndef UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_
-#define UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_
-
-#include <windows.h>
-
-#include <map>
-
-#include "base/basictypes.h"
-
-namespace gfx {
-class Rect;
-}
-
-namespace views {
-
-class FullscreenHandler {
- public:
- FullscreenHandler();
- ~FullscreenHandler();
-
- void set_hwnd(HWND hwnd) { hwnd_ = hwnd; }
-
- void SetFullscreen(bool fullscreen);
- void SetMetroSnap(bool metro_snap);
-
- gfx::Rect GetRestoreBounds() const;
-
- bool fullscreen() const { return fullscreen_; }
- bool metro_snap() const { return metro_snap_; }
-
- private:
- // Information saved before going into fullscreen mode, used to restore the
- // window afterwards.
- struct SavedWindowInfo {
- bool maximized;
- LONG style;
- LONG ex_style;
- RECT window_rect;
- };
-
- void SetFullscreenImpl(bool fullscreen, bool for_metro);
-
- HWND hwnd_;
- bool fullscreen_;
- bool metro_snap_;
-
- // Saved window information from before entering fullscreen mode.
- // TODO(beng): move to private once GetRestoredBounds() moves onto Widget.
- SavedWindowInfo saved_window_info_;
-
- DISALLOW_COPY_AND_ASSIGN(FullscreenHandler);
-};
-
-} // namespace views
-
-#endif // UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_
« no previous file with comments | « ui/views/win/DEPS ('k') | ui/views/win/fullscreen_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698