| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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/dom_ui/html_dialog_tab_contents_delegate.h" | 5 #include "chrome/browser/dom_ui/html_dialog_tab_contents_delegate.h" |
| 6 | 6 |
| 7 #include <vector> | 7 #include <vector> |
| 8 | 8 |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/scoped_ptr.h" | 10 #include "base/scoped_ptr.h" |
| 11 #include "chrome/browser/browser.h" | |
| 12 #include "chrome/browser/browser_list.h" | |
| 13 #include "chrome/browser/history/history_types.h" | 11 #include "chrome/browser/history/history_types.h" |
| 14 #include "chrome/browser/tab_contents/test_tab_contents.h" | 12 #include "chrome/browser/tab_contents/test_tab_contents.h" |
| 13 #include "chrome/browser/ui/browser.h" |
| 14 #include "chrome/browser/ui/browser_list.h" |
| 15 #include "chrome/common/url_constants.h" | 15 #include "chrome/common/url_constants.h" |
| 16 #include "chrome/test/browser_with_test_window_test.h" | 16 #include "chrome/test/browser_with_test_window_test.h" |
| 17 #include "chrome/test/test_browser_window.h" | 17 #include "chrome/test/test_browser_window.h" |
| 18 #include "chrome/test/testing_profile.h" | 18 #include "chrome/test/testing_profile.h" |
| 19 #include "gfx/rect.h" | 19 #include "gfx/rect.h" |
| 20 #include "googleurl/src/gurl.h" | 20 #include "googleurl/src/gurl.h" |
| 21 #include "testing/gmock/include/gmock/gmock.h" | 21 #include "testing/gmock/include/gmock/gmock.h" |
| 22 #include "testing/gtest/include/gtest/gtest.h" | 22 #include "testing/gtest/include/gtest/gtest.h" |
| 23 | 23 |
| 24 namespace { | 24 namespace { |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 test_tab_contents_delegate_->OpenURLFromTab( | 105 test_tab_contents_delegate_->OpenURLFromTab( |
| 106 NULL, GURL(chrome::kAboutBlankURL), GURL(), | 106 NULL, GURL(chrome::kAboutBlankURL), GURL(), |
| 107 NEW_FOREGROUND_TAB, PageTransition::LINK); | 107 NEW_FOREGROUND_TAB, PageTransition::LINK); |
| 108 test_tab_contents_delegate_->AddNewContents(NULL, NULL, NEW_FOREGROUND_TAB, | 108 test_tab_contents_delegate_->AddNewContents(NULL, NULL, NEW_FOREGROUND_TAB, |
| 109 gfx::Rect(), false); | 109 gfx::Rect(), false); |
| 110 EXPECT_EQ(0, browser()->tab_count()); | 110 EXPECT_EQ(0, browser()->tab_count()); |
| 111 EXPECT_EQ(1U, BrowserList::size()); | 111 EXPECT_EQ(1U, BrowserList::size()); |
| 112 } | 112 } |
| 113 | 113 |
| 114 } // namespace | 114 } // namespace |
| OLD | NEW |