| OLD | NEW |
| 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 "base/command_line.h" | 5 #include "base/command_line.h" |
| 6 #include "base/memory/scoped_ptr.h" | 6 #include "base/memory/scoped_ptr.h" |
| 7 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
| 8 #include "chrome/browser/automation/ui_controls.h" | 8 #include "chrome/browser/automation/ui_controls.h" |
| 9 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" | 9 #include "chrome/browser/chromeos/cros/cros_in_process_browser_test.h" |
| 10 #include "chrome/browser/chromeos/cros/mock_screen_lock_library.h" | 10 #include "chrome/browser/chromeos/cros/mock_screen_lock_library.h" |
| 11 #include "chrome/browser/chromeos/login/mock_authenticator.h" | 11 #include "chrome/browser/chromeos/login/mock_authenticator.h" |
| 12 #include "chrome/browser/chromeos/login/screen_locker.h" | 12 #include "chrome/browser/chromeos/login/screen_locker.h" |
| 13 #include "chrome/browser/chromeos/login/screen_locker_tester.h" | 13 #include "chrome/browser/chromeos/login/screen_locker_tester.h" |
| 14 #include "chrome/browser/chromeos/login/user_manager.h" | 14 #include "chrome/browser/chromeos/login/user_manager.h" |
| 15 #include "chrome/browser/profiles/profile_manager.h" | 15 #include "chrome/browser/profiles/profile_manager.h" |
| 16 #include "chrome/browser/ui/browser.h" | 16 #include "chrome/browser/ui/browser.h" |
| 17 #include "chrome/browser/ui/browser_window.h" | 17 #include "chrome/browser/ui/browser_window.h" |
| 18 #include "chrome/browser/ui/views/browser_dialogs.h" | 18 #include "chrome/browser/ui/views/browser_dialogs.h" |
| 19 #include "chrome/common/chrome_notification_types.h" | 19 #include "chrome/common/chrome_notification_types.h" |
| 20 #include "chrome/common/chrome_switches.h" | 20 #include "chrome/common/chrome_switches.h" |
| 21 #include "chrome/test/base/ui_test_utils.h" | 21 #include "chrome/test/base/ui_test_utils.h" |
| 22 #include "content/public/browser/notification_service.h" | 22 #include "content/public/browser/notification_service.h" |
| 23 #include "testing/gmock/include/gmock/gmock.h" | 23 #include "testing/gmock/include/gmock/gmock.h" |
| 24 #include "testing/gtest/include/gtest/gtest.h" | 24 #include "testing/gtest/include/gtest/gtest.h" |
| 25 #include "ui/views/widget/native_widget_gtk.h" |
| 25 #include "views/controls/textfield/textfield.h" | 26 #include "views/controls/textfield/textfield.h" |
| 26 #include "views/widget/native_widget_gtk.h" | |
| 27 | 27 |
| 28 namespace { | 28 namespace { |
| 29 | 29 |
| 30 // An object that wait for lock state and fullscreen state. | 30 // An object that wait for lock state and fullscreen state. |
| 31 class Waiter : public content::NotificationObserver { | 31 class Waiter : public content::NotificationObserver { |
| 32 public: | 32 public: |
| 33 explicit Waiter(Browser* browser) | 33 explicit Waiter(Browser* browser) |
| 34 : browser_(browser), | 34 : browser_(browser), |
| 35 running_(false) { | 35 running_(false) { |
| 36 registrar_.Add(this, | 36 registrar_.Add(this, |
| (...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 313 ui_test_utils::RunAllPendingInMessageLoop(); | 313 ui_test_utils::RunAllPendingInMessageLoop(); |
| 314 EXPECT_EQ("", tester->GetPassword()); | 314 EXPECT_EQ("", tester->GetPassword()); |
| 315 | 315 |
| 316 // Close the locker to match expectations. | 316 // Close the locker to match expectations. |
| 317 ScreenLocker::Hide(); | 317 ScreenLocker::Hide(); |
| 318 ui_test_utils::RunAllPendingInMessageLoop(); | 318 ui_test_utils::RunAllPendingInMessageLoop(); |
| 319 EXPECT_FALSE(tester->IsLocked()); | 319 EXPECT_FALSE(tester->IsLocked()); |
| 320 } | 320 } |
| 321 | 321 |
| 322 } // namespace chromeos | 322 } // namespace chromeos |
| OLD | NEW |