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

Side by Side Diff: ui/aura/hit_test.h

Issue 7886042: Move Aura to UI subdir. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 3 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 AURA_HIT_TEST_H_ 5 #ifndef UI_AURA_HIT_TEST_H_
6 #define AURA_HIT_TEST_H_ 6 #define UI_AURA_HIT_TEST_H_
7 #pragma once 7 #pragma once
8 8
9 // Defines the same symbolic names used by the WM_NCHITTEST Notification under 9 // Defines the same symbolic names used by the WM_NCHITTEST Notification under
10 // win32 (the integer values are not guaranteed to be equivalent). We do this 10 // win32 (the integer values are not guaranteed to be equivalent). We do this
11 // because we have a whole bunch of code that deals with window resizing and 11 // because we have a whole bunch of code that deals with window resizing and
12 // such that requires these values. 12 // such that requires these values.
13 enum HitTestCompat { 13 enum HitTestCompat {
14 HTBORDER = 1, 14 HTBORDER = 1,
15 HTBOTTOM, 15 HTBOTTOM,
16 HTBOTTOMLEFT, 16 HTBOTTOMLEFT,
(...skipping 15 matching lines...) Expand all
32 HTSIZE, 32 HTSIZE,
33 HTSYSMENU, 33 HTSYSMENU,
34 HTTOP, 34 HTTOP,
35 HTTOPLEFT, 35 HTTOPLEFT,
36 HTTOPRIGHT, 36 HTTOPRIGHT,
37 HTTRANSPARENT, 37 HTTRANSPARENT,
38 HTVSCROLL, 38 HTVSCROLL,
39 HTZOOM 39 HTZOOM
40 }; 40 };
41 41
42 #endif // AURA_HIT_TEST_H_ 42 #endif // UI_AURA_HIT_TEST_H_
OLDNEW
« ui/aura/aura.gyp ('K') | « ui/aura/focus_manager.cc ('k') | ui/aura/root_window.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698