summaryrefslogtreecommitdiffstats
path: root/views/widget/widget_win.h
diff options
context:
space:
mode:
authormaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-14 19:13:13 +0000
committermaruel@chromium.org <maruel@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-14 19:13:13 +0000
commitf71e72699d8535e85fc47c6c2b63f84f796bef71 (patch)
treeb01d1d452ee5a460326a2cbfa642d876830d2120 /views/widget/widget_win.h
parent957b7b518251ba16abca74ff04e370564a826a74 (diff)
downloadchromium_src-f71e72699d8535e85fc47c6c2b63f84f796bef71.zip
chromium_src-f71e72699d8535e85fc47c6c2b63f84f796bef71.tar.gz
chromium_src-f71e72699d8535e85fc47c6c2b63f84f796bef71.tar.bz2
Remove even more ATL dependencies.
Review URL: http://codereview.chromium.org/115309 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16088 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'views/widget/widget_win.h')
-rw-r--r--views/widget/widget_win.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/views/widget/widget_win.h b/views/widget/widget_win.h
index d948e66..b39362f 100644
--- a/views/widget/widget_win.h
+++ b/views/widget/widget_win.h
@@ -6,7 +6,9 @@
#define VIEWS_WIDGET_WIDGET_WIN_H_
#include <atlbase.h>
+#include <atlapp.h>
#include <atlcrack.h>
+#include <atlmisc.h>
#include "base/message_loop.h"
#include "base/system_monitor.h"
@@ -36,7 +38,7 @@ RootView* GetRootViewForHWND(HWND hwnd);
// uMsg - kReflectedMessage
// wParam - Should be 0
// lParam - Pointer to MSG struct containing the original message.
-static const int kReflectedMessage = WM_APP + 3;
+const int kReflectedMessage = WM_APP + 3;
// These two messages aren't defined in winuser.h, but they are sent to windows
// with captions. They appear to paint the window caption and frame.
@@ -46,8 +48,8 @@ static const int kReflectedMessage = WM_APP + 3;
// window and paint the standard caption/title over the top of the custom one.
// So we need to handle these messages in CustomFrameWindow to prevent this
// from happening.
-static const int WM_NCUAHDRAWCAPTION = 0xAE;
-static const int WM_NCUAHDRAWFRAME = 0xAF;
+const int WM_NCUAHDRAWCAPTION = 0xAE;
+const int WM_NCUAHDRAWFRAME = 0xAF;
///////////////////////////////////////////////////////////////////////////////
//