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

Side by Side Diff: views/view_win.cc

Issue 6312156: Change includes of gfx/* to ui/gfx/* (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 10 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 | « views/view_unittest.cc ('k') | views/widget/aero_tooltip_manager.cc » ('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) 2010 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2010 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 #include "views/view.h" 5 #include "views/view.h"
6 6
7 #include <atlcomcli.h> 7 #include <atlcomcli.h>
8 // Necessary to define oleacc GUID's used in window_win.cc. 8 // Necessary to define oleacc GUID's used in window_win.cc.
9 #include <initguid.h> 9 #include <initguid.h>
10 #include <oleacc.h> 10 #include <oleacc.h>
11 11
12 #include "base/string_util.h" 12 #include "base/string_util.h"
13 #include "gfx/canvas.h"
14 #include "gfx/path.h"
15 #include "ui/base/dragdrop/drag_drop_types.h" 13 #include "ui/base/dragdrop/drag_drop_types.h"
14 #include "ui/gfx/canvas.h"
15 #include "ui/gfx/path.h"
16 #include "views/accessibility/view_accessibility.h" 16 #include "views/accessibility/view_accessibility.h"
17 #include "views/border.h" 17 #include "views/border.h"
18 #include "views/views_delegate.h" 18 #include "views/views_delegate.h"
19 #include "views/widget/root_view.h" 19 #include "views/widget/root_view.h"
20 #include "views/widget/widget.h" 20 #include "views/widget/widget.h"
21 #include "views/widget/widget_win.h" 21 #include "views/widget/widget_win.h"
22 22
23 namespace views { 23 namespace views {
24 24
25 // static 25 // static
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
67 } 67 }
68 68
69 int View::GetVerticalDragThreshold() { 69 int View::GetVerticalDragThreshold() {
70 static int threshold = -1; 70 static int threshold = -1;
71 if (threshold == -1) 71 if (threshold == -1)
72 threshold = GetSystemMetrics(SM_CYDRAG) / 2; 72 threshold = GetSystemMetrics(SM_CYDRAG) / 2;
73 return threshold; 73 return threshold;
74 } 74 }
75 75
76 } // namespace views 76 } // namespace views
OLDNEW
« no previous file with comments | « views/view_unittest.cc ('k') | views/widget/aero_tooltip_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698