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

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

Issue 687903003: Cleanup: Remove unneeded ui_test_utils.h includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix cros Created 6 years, 1 month 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
OLDNEW
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/strings/utf_string_conversions.h" 8 #include "base/strings/utf_string_conversions.h"
9 #include "chrome/browser/lifetime/application_lifetime.h" 9 #include "chrome/browser/lifetime/application_lifetime.h"
10 #include "chrome/browser/ui/browser.h" 10 #include "chrome/browser/ui/browser.h"
11 #include "chrome/browser/ui/browser_dialogs.h" 11 #include "chrome/browser/ui/browser_dialogs.h"
12 #include "chrome/browser/ui/tabs/tab_strip_model.h" 12 #include "chrome/browser/ui/tabs/tab_strip_model.h"
13 #include "chrome/test/base/ui_test_utils.h"
14 #include "content/public/browser/page_navigator.h" 13 #include "content/public/browser/page_navigator.h"
15 #include "content/public/browser/web_contents.h" 14 #include "content/public/browser/web_contents.h"
15 #include "content/public/test/test_utils.h"
16 #include "testing/gtest/include/gtest/gtest.h" 16 #include "testing/gtest/include/gtest/gtest.h"
17 #include "ui/base/window_open_disposition.h" 17 #include "ui/base/window_open_disposition.h"
18 18
19 MockTabModalConfirmDialogDelegate::MockTabModalConfirmDialogDelegate( 19 MockTabModalConfirmDialogDelegate::MockTabModalConfirmDialogDelegate(
20 content::WebContents* web_contents, 20 content::WebContents* web_contents,
21 Delegate* delegate) 21 Delegate* delegate)
22 : TabModalConfirmDialogDelegate(web_contents), 22 : TabModalConfirmDialogDelegate(web_contents),
23 delegate_(delegate) { 23 delegate_(delegate) {
24 } 24 }
25 25
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 } 130 }
131 131
132 IN_PROC_BROWSER_TEST_F(TabModalConfirmDialogTest, Quit) { 132 IN_PROC_BROWSER_TEST_F(TabModalConfirmDialogTest, Quit) {
133 base::MessageLoopForUI::current()->PostTask(FROM_HERE, 133 base::MessageLoopForUI::current()->PostTask(FROM_HERE,
134 base::Bind(&chrome::AttemptExit)); 134 base::Bind(&chrome::AttemptExit));
135 content::RunMessageLoop(); 135 content::RunMessageLoop();
136 EXPECT_EQ(0, accepted_count_); 136 EXPECT_EQ(0, accepted_count_);
137 EXPECT_EQ(0, canceled_count_); 137 EXPECT_EQ(0, canceled_count_);
138 EXPECT_EQ(1, closed_count_); 138 EXPECT_EQ(1, closed_count_);
139 } 139 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/panels/panel_extension_browsertest.cc ('k') | chrome/browser/ui/views/ash/tab_scrubber_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698