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

Side by Side Diff: chrome/browser/ui/fullscreen/fullscreen_exit_bubble.h

Issue 392013005: [#1] Delete reduntdant 19 header files in ui/gfx (8 of 19 by this) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: sorted includes Created 6 years, 5 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 CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_EXIT_BUBBLE_H_ 5 #ifndef CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_EXIT_BUBBLE_H_
6 #define CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_EXIT_BUBBLE_H_ 6 #define CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_EXIT_BUBBLE_H_
7 7
8 #include "base/timer/timer.h" 8 #include "base/timer/timer.h"
9 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h" 9 #include "chrome/browser/ui/fullscreen/fullscreen_exit_bubble_type.h"
10 #include "ui/gfx/animation/animation_delegate.h" 10 #include "ui/gfx/animation/animation_delegate.h"
11 #include "ui/gfx/point.h" 11 #include "ui/gfx/geometry/point.h"
12 #include "url/gurl.h" 12 #include "url/gurl.h"
13 13
14 class Browser; 14 class Browser;
15 15
16 namespace gfx { 16 namespace gfx {
17 class Rect; 17 class Rect;
18 } 18 }
19 19
20 class FullscreenExitBubble : public gfx::AnimationDelegate { 20 class FullscreenExitBubble : public gfx::AnimationDelegate {
21 public: 21 public:
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 base::RepeatingTimer<FullscreenExitBubble> mouse_position_checker_; 106 base::RepeatingTimer<FullscreenExitBubble> mouse_position_checker_;
107 107
108 // The most recently seen mouse position, in screen coordinates. Used to see 108 // The most recently seen mouse position, in screen coordinates. Used to see
109 // if the mouse has moved since our last check. 109 // if the mouse has moved since our last check.
110 gfx::Point last_mouse_pos_; 110 gfx::Point last_mouse_pos_;
111 111
112 DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubble); 112 DISALLOW_COPY_AND_ASSIGN(FullscreenExitBubble);
113 }; 113 };
114 114
115 #endif // CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_EXIT_BUBBLE_H_ 115 #endif // CHROME_BROWSER_UI_FULLSCREEN_FULLSCREEN_EXIT_BUBBLE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698