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

Side by Side Diff: chrome/browser/ui/constrained_window_tab_helper_unittest.cc

Issue 10500016: Move test_browser_thread.h from content\test to content\public\test. This way we can enforce that i… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698