| 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 "chrome/browser/ui/tab_modal_confirm_dialog_browsertest.h" | 5 #include "chrome/browser/ui/tab_modal_confirm_dialog_browsertest.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/message_loop/message_loop.h" |
| 8 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
| 9 #include "chrome/browser/lifetime/application_lifetime.h" | 10 #include "chrome/browser/lifetime/application_lifetime.h" |
| 10 #include "chrome/browser/ui/browser.h" | 11 #include "chrome/browser/ui/browser.h" |
| 11 #include "chrome/browser/ui/browser_dialogs.h" | 12 #include "chrome/browser/ui/browser_dialogs.h" |
| 12 #include "chrome/browser/ui/tabs/tab_strip_model.h" | 13 #include "chrome/browser/ui/tabs/tab_strip_model.h" |
| 13 #include "content/public/browser/page_navigator.h" | 14 #include "content/public/browser/page_navigator.h" |
| 14 #include "content/public/browser/web_contents.h" | 15 #include "content/public/browser/web_contents.h" |
| 15 #include "content/public/test/test_utils.h" | 16 #include "content/public/test/test_utils.h" |
| 16 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "testing/gtest/include/gtest/gtest.h" |
| 17 #include "ui/base/window_open_disposition.h" | 18 #include "ui/base/window_open_disposition.h" |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 ui::PAGE_TRANSITION_LINK, | 124 ui::PAGE_TRANSITION_LINK, |
| 124 false); | 125 false); |
| 125 browser()->tab_strip_model()->GetActiveWebContents()->OpenURL(params); | 126 browser()->tab_strip_model()->GetActiveWebContents()->OpenURL(params); |
| 126 | 127 |
| 127 EXPECT_EQ(0, accepted_count_); | 128 EXPECT_EQ(0, accepted_count_); |
| 128 EXPECT_EQ(0, canceled_count_); | 129 EXPECT_EQ(0, canceled_count_); |
| 129 EXPECT_EQ(1, closed_count_); | 130 EXPECT_EQ(1, closed_count_); |
| 130 } | 131 } |
| 131 | 132 |
| 132 IN_PROC_BROWSER_TEST_F(TabModalConfirmDialogTest, Quit) { | 133 IN_PROC_BROWSER_TEST_F(TabModalConfirmDialogTest, Quit) { |
| 133 base::MessageLoopForUI::current()->PostTask(FROM_HERE, | 134 base::MessageLoop::current()->task_runner()->PostTask( |
| 134 base::Bind(&chrome::AttemptExit)); | 135 FROM_HERE, base::Bind(&chrome::AttemptExit)); |
| 135 content::RunMessageLoop(); | 136 content::RunMessageLoop(); |
| 136 EXPECT_EQ(0, accepted_count_); | 137 EXPECT_EQ(0, accepted_count_); |
| 137 EXPECT_EQ(0, canceled_count_); | 138 EXPECT_EQ(0, canceled_count_); |
| 138 EXPECT_EQ(1, closed_count_); | 139 EXPECT_EQ(1, closed_count_); |
| 139 } | 140 } |
| OLD | NEW |