OLD | NEW |
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 #include "chrome/browser/ui/constrained_window.h" | 5 #include "chrome/browser/ui/constrained_window.h" |
6 #include "chrome/browser/ui/constrained_window_tab_helper.h" | 6 #include "chrome/browser/ui/constrained_window_tab_helper.h" |
7 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" | 7 #include "chrome/browser/ui/tab_contents/tab_contents_wrapper.h" |
8 #include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h" | 8 #include "chrome/browser/ui/tab_contents/test_tab_contents_wrapper.h" |
| 9 #include "content/test/test_browser_thread.h" |
9 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
10 #include "content/browser/browser_thread.h" | |
11 | 11 |
12 class ConstrainedWindowTabHelperUnit : public TabContentsWrapperTestHarness { | 12 class ConstrainedWindowTabHelperUnit : public TabContentsWrapperTestHarness { |
13 public: | 13 public: |
14 ConstrainedWindowTabHelperUnit() | 14 ConstrainedWindowTabHelperUnit() |
15 : TabContentsWrapperTestHarness(), | 15 : TabContentsWrapperTestHarness(), |
16 ui_thread_(BrowserThread::UI, &message_loop_) { | 16 ui_thread_(BrowserThread::UI, &message_loop_) { |
17 } | 17 } |
18 | 18 |
19 private: | 19 private: |
20 BrowserThread ui_thread_; | 20 content::TestBrowserThread ui_thread_; |
21 }; | 21 }; |
22 | 22 |
23 class ConstrainedWindowCloseTest : public ConstrainedWindow { | 23 class ConstrainedWindowCloseTest : public ConstrainedWindow { |
24 public: | 24 public: |
25 explicit ConstrainedWindowCloseTest(TabContentsWrapper* wrapper) | 25 explicit ConstrainedWindowCloseTest(TabContentsWrapper* wrapper) |
26 : wrapper_(wrapper) { | 26 : wrapper_(wrapper) { |
27 } | 27 } |
28 | 28 |
29 virtual void ShowConstrainedWindow() {} | 29 virtual void ShowConstrainedWindow() {} |
30 virtual void FocusConstrainedWindow() {} | 30 virtual void FocusConstrainedWindow() {} |
(...skipping 15 matching lines...) Expand all Loading... |
46 const int kWindowCount = 4; | 46 const int kWindowCount = 4; |
47 for (int i = 0; i < kWindowCount; i++) { | 47 for (int i = 0; i < kWindowCount; i++) { |
48 contents_wrapper()->constrained_window_tab_helper()->AddConstrainedDialog( | 48 contents_wrapper()->constrained_window_tab_helper()->AddConstrainedDialog( |
49 &window); | 49 &window); |
50 } | 50 } |
51 EXPECT_EQ(window.close_count, 0); | 51 EXPECT_EQ(window.close_count, 0); |
52 contents_wrapper()->constrained_window_tab_helper()-> | 52 contents_wrapper()->constrained_window_tab_helper()-> |
53 CloseConstrainedWindows(); | 53 CloseConstrainedWindows(); |
54 EXPECT_EQ(window.close_count, kWindowCount); | 54 EXPECT_EQ(window.close_count, kWindowCount); |
55 } | 55 } |
OLD | NEW |