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

Side by Side Diff: chrome/browser/printing/print_dialog_cloud_interative_uitest.cc

Issue 10079023: Move notifications used only in chrome/ out of content/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: six! Created 8 years, 8 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) 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/printing/print_dialog_cloud.h" 5 #include "chrome/browser/printing/print_dialog_cloud.h"
6 #include "chrome/browser/printing/print_dialog_cloud_internal.h" 6 #include "chrome/browser/printing/print_dialog_cloud_internal.h"
7 7
8 #include <functional> 8 #include <functional>
9 9
10 #include "base/bind.h" 10 #include "base/bind.h"
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 AddTestHandlers(); 239 AddTestHandlers();
240 240
241 TestController::GetInstance()->set_use_delegate(true); 241 TestController::GetInstance()->set_use_delegate(true);
242 242
243 ui_test_utils::RunMessageLoop(); 243 ui_test_utils::RunMessageLoop();
244 244
245 ASSERT_TRUE(TestController::GetInstance()->result()); 245 ASSERT_TRUE(TestController::GetInstance()->result());
246 246
247 // Close the dialog before finishing the test. 247 // Close the dialog before finishing the test.
248 ui_test_utils::WindowedNotificationObserver tab_closed_observer( 248 ui_test_utils::WindowedNotificationObserver tab_closed_observer(
249 content::NOTIFICATION_TAB_CLOSED, 249 content::NOTIFICATION_WEB_CONTENTS_DESTROYED,
250 content::NotificationService::AllSources()); 250 content::NotificationService::AllSources());
251 251
252 // Can't use ui_test_utils::SendKeyPressSync or 252 // Can't use ui_test_utils::SendKeyPressSync or
253 // ui_test_utils::SendKeyPressAndWait due to a race condition with closing 253 // ui_test_utils::SendKeyPressAndWait due to a race condition with closing
254 // the window. See http://crbug.com/111269 254 // the window. See http://crbug.com/111269
255 BrowserWindow* window = browser()->window(); 255 BrowserWindow* window = browser()->window();
256 ASSERT_TRUE(window); 256 ASSERT_TRUE(window);
257 gfx::NativeWindow native_window = window->GetNativeHandle(); 257 gfx::NativeWindow native_window = window->GetNativeHandle();
258 ASSERT_TRUE(native_window); 258 ASSERT_TRUE(native_window);
259 bool key_sent = ui_controls::SendKeyPress(native_window, ui::VKEY_ESCAPE, 259 bool key_sent = ui_controls::SendKeyPress(native_window, ui::VKEY_ESCAPE,
260 false, false, false, false); 260 false, false, false, false);
261 EXPECT_TRUE(key_sent); 261 EXPECT_TRUE(key_sent);
262 if (key_sent) 262 if (key_sent)
263 tab_closed_observer.Wait(); 263 tab_closed_observer.Wait();
264 } 264 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698