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

Side by Side Diff: ui/base/win/hwnd_subclass_unittest.cc

Issue 23769011: Move a bunch of windows stuff from ui/base/win to ui/gfx/win (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moar bustage. Created 7 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
« no previous file with comments | « ui/base/win/hwnd_subclass.cc ('k') | ui/base/win/hwnd_util.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 #include "ui/base/win/hwnd_subclass.h" 5 #include "ui/base/win/hwnd_subclass.h"
6 6
7 #include "base/basictypes.h" 7 #include "base/basictypes.h"
8 #include "testing/gtest/include/gtest/gtest.h" 8 #include "testing/gtest/include/gtest/gtest.h"
9 #include "ui/base/win/window_impl.h" 9 #include "ui/gfx/win/window_impl.h"
10 10
11 namespace ui { 11 namespace ui {
12 12
13 namespace { 13 namespace {
14 14
15 class TestWindow : public ui::WindowImpl { 15 class TestWindow : public gfx::WindowImpl {
16 public: 16 public:
17 TestWindow() : saw_message(false) {} 17 TestWindow() : saw_message(false) {}
18 virtual ~TestWindow() {} 18 virtual ~TestWindow() {}
19 19
20 bool saw_message; 20 bool saw_message;
21 21
22 private: 22 private:
23 // Overridden from ui::WindowImpl: 23 // Overridden from gfx::WindowImpl:
24 virtual BOOL ProcessWindowMessage(HWND window, 24 virtual BOOL ProcessWindowMessage(HWND window,
25 UINT message, 25 UINT message,
26 WPARAM w_param, 26 WPARAM w_param,
27 LPARAM l_param, 27 LPARAM l_param,
28 LRESULT& result, 28 LRESULT& result,
29 DWORD msg_map_id) OVERRIDE { 29 DWORD msg_map_id) OVERRIDE {
30 if (message == WM_NCHITTEST) 30 if (message == WM_NCHITTEST)
31 saw_message = true; 31 saw_message = true;
32 32
33 return FALSE; // Results in DefWindowProc(). 33 return FALSE; // Results in DefWindowProc().
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 // Remove a filter and try sending message again. 153 // Remove a filter and try sending message again.
154 HWNDSubclass::RemoveFilterFromAllTargets(&mf1); 154 HWNDSubclass::RemoveFilterFromAllTargets(&mf1);
155 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0); 155 ::SendMessage(window.hwnd(), WM_NCHITTEST, 0, 0);
156 EXPECT_FALSE(mf1.saw_message); 156 EXPECT_FALSE(mf1.saw_message);
157 EXPECT_TRUE(mf2.saw_message); 157 EXPECT_TRUE(mf2.saw_message);
158 EXPECT_TRUE(window.saw_message); 158 EXPECT_TRUE(window.saw_message);
159 } 159 }
160 } 160 }
161 161
162 } // namespace ui 162 } // namespace ui
OLDNEW
« no previous file with comments | « ui/base/win/hwnd_subclass.cc ('k') | ui/base/win/hwnd_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698