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 "content/public/test/test_browser_thread.h" |
10 #include "testing/gtest/include/gtest/gtest.h" | 10 #include "testing/gtest/include/gtest/gtest.h" |
11 | 11 |
12 using content::BrowserThread; | 12 using content::BrowserThread; |
13 | 13 |
14 class ConstrainedWindowTabHelperUnit : public TabContentsWrapperTestHarness { | 14 class ConstrainedWindowTabHelperUnit : public TabContentsWrapperTestHarness { |
15 public: | 15 public: |
16 ConstrainedWindowTabHelperUnit() | 16 ConstrainedWindowTabHelperUnit() |
17 : TabContentsWrapperTestHarness(), | 17 : TabContentsWrapperTestHarness(), |
18 ui_thread_(BrowserThread::UI, &message_loop_) { | 18 ui_thread_(BrowserThread::UI, &message_loop_) { |
19 } | 19 } |
(...skipping 28 matching lines...) Expand all Loading... |
48 const int kWindowCount = 4; | 48 const int kWindowCount = 4; |
49 for (int i = 0; i < kWindowCount; i++) { | 49 for (int i = 0; i < kWindowCount; i++) { |
50 contents_wrapper()->constrained_window_tab_helper()->AddConstrainedDialog( | 50 contents_wrapper()->constrained_window_tab_helper()->AddConstrainedDialog( |
51 &window); | 51 &window); |
52 } | 52 } |
53 EXPECT_EQ(window.close_count, 0); | 53 EXPECT_EQ(window.close_count, 0); |
54 contents_wrapper()->constrained_window_tab_helper()-> | 54 contents_wrapper()->constrained_window_tab_helper()-> |
55 CloseConstrainedWindows(); | 55 CloseConstrainedWindows(); |
56 EXPECT_EQ(window.close_count, kWindowCount); | 56 EXPECT_EQ(window.close_count, kWindowCount); |
57 } | 57 } |
OLD | NEW |