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

Side by Side Diff: ui/views/win/fullscreen_handler.h

Issue 1543173002: Switch to standard integer types in ui/views/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_ 5 #ifndef UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_
6 #define UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_ 6 #define UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_
7 7
8 #include <windows.h> 8 #include <windows.h>
9 9
10 #include <map> 10 #include <map>
11 11
12 #include "base/basictypes.h" 12 #include "base/macros.h"
13 13
14 namespace gfx { 14 namespace gfx {
15 class Rect; 15 class Rect;
16 } 16 }
17 17
18 namespace views { 18 namespace views {
19 19
20 class FullscreenHandler { 20 class FullscreenHandler {
21 public: 21 public:
22 FullscreenHandler(); 22 FullscreenHandler();
(...skipping 28 matching lines...) Expand all
51 // Saved window information from before entering fullscreen mode. 51 // Saved window information from before entering fullscreen mode.
52 // TODO(beng): move to private once GetRestoredBounds() moves onto Widget. 52 // TODO(beng): move to private once GetRestoredBounds() moves onto Widget.
53 SavedWindowInfo saved_window_info_; 53 SavedWindowInfo saved_window_info_;
54 54
55 DISALLOW_COPY_AND_ASSIGN(FullscreenHandler); 55 DISALLOW_COPY_AND_ASSIGN(FullscreenHandler);
56 }; 56 };
57 57
58 } // namespace views 58 } // namespace views
59 59
60 #endif // UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_ 60 #endif // UI_VIEWS_WIN_FULLSCREEN_HANDLER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698