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

Side by Side Diff: ui/gfx/screen_win.h

Issue 23498059: Remove last dependencies on ui/base from ui/gfx (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: last rebase Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « ui/gfx/screen_type_delegate.h ('k') | ui/gfx/scrollbar_size.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_GFX_SCREEN_WIN_H_ 5 #ifndef UI_GFX_SCREEN_WIN_H_
6 #define UI_GFX_SCREEN_WIN_H_ 6 #define UI_GFX_SCREEN_WIN_H_
7 7
8 #include "base/compiler_specific.h" 8 #include "base/compiler_specific.h"
9 #include "ui/gfx/gfx_export.h" 9 #include "ui/gfx/gfx_export.h"
10 #include "ui/gfx/screen.h" 10 #include "ui/gfx/screen.h"
11 11
12 namespace gfx { 12 namespace gfx {
13 13
14 class UI_EXPORT ScreenWin : public gfx::Screen { 14 class GFX_EXPORT ScreenWin : public gfx::Screen {
15 public: 15 public:
16 ScreenWin(); 16 ScreenWin();
17 virtual ~ScreenWin(); 17 virtual ~ScreenWin();
18 18
19 protected: 19 protected:
20 // Overridden from gfx::Screen: 20 // Overridden from gfx::Screen:
21 virtual bool IsDIPEnabled() OVERRIDE; 21 virtual bool IsDIPEnabled() OVERRIDE;
22 virtual gfx::Point GetCursorScreenPoint() OVERRIDE; 22 virtual gfx::Point GetCursorScreenPoint() OVERRIDE;
23 virtual gfx::NativeWindow GetWindowUnderCursor() OVERRIDE; 23 virtual gfx::NativeWindow GetWindowUnderCursor() OVERRIDE;
24 virtual gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point) 24 virtual gfx::NativeWindow GetWindowAtScreenPoint(const gfx::Point& point)
(...skipping 16 matching lines...) Expand all
41 // Returns the NativeView associated with the HWND. 41 // Returns the NativeView associated with the HWND.
42 virtual NativeWindow GetNativeWindowFromHWND(HWND hwnd) const; 42 virtual NativeWindow GetNativeWindowFromHWND(HWND hwnd) const;
43 43
44 private: 44 private:
45 DISALLOW_COPY_AND_ASSIGN(ScreenWin); 45 DISALLOW_COPY_AND_ASSIGN(ScreenWin);
46 }; 46 };
47 47
48 } // namespace gfx 48 } // namespace gfx
49 49
50 #endif // UI_GFX_SCREEN_WIN_H_ 50 #endif // UI_GFX_SCREEN_WIN_H_
OLDNEW
« no previous file with comments | « ui/gfx/screen_type_delegate.h ('k') | ui/gfx/scrollbar_size.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698