| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |