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/chromeos/kiosk_mode/kiosk_mode_idle_logout.h" | 5 #include "chrome/browser/chromeos/kiosk_mode/kiosk_mode_idle_logout.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/memory/scoped_ptr.h" | 8 #include "base/memory/scoped_ptr.h" |
9 #include "base/message_loop.h" | 9 #include "base/message_loop.h" |
10 #include "base/synchronization/waitable_event.h" | 10 #include "base/synchronization/waitable_event.h" |
11 #include "chrome/browser/chromeos/dbus/dbus_thread_manager.h" | |
12 #include "chrome/browser/chromeos/login/user_manager.h" | 11 #include "chrome/browser/chromeos/login/user_manager.h" |
13 #include "chrome/common/chrome_notification_types.h" | 12 #include "chrome/common/chrome_notification_types.h" |
| 13 #include "chromeos/dbus/dbus_thread_manager.h" |
14 #include "content/public/browser/browser_thread.h" | 14 #include "content/public/browser/browser_thread.h" |
15 #include "content/public/browser/notification_registrar.h" | 15 #include "content/public/browser/notification_registrar.h" |
16 #include "content/public/browser/notification_service.h" | 16 #include "content/public/browser/notification_service.h" |
17 #include "content/test/test_browser_thread.h" | 17 #include "content/test/test_browser_thread.h" |
18 #include "testing/gtest/include/gtest/gtest.h" | 18 #include "testing/gtest/include/gtest/gtest.h" |
19 | 19 |
20 using content::BrowserThread; | 20 using content::BrowserThread; |
21 | 21 |
22 namespace chromeos { | 22 namespace chromeos { |
23 | 23 |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 content::Source<UserManager>(UserManager::Get()), | 69 content::Source<UserManager>(UserManager::Get()), |
70 // Ideally this should be the user logged in, but since we won't really be | 70 // Ideally this should be the user logged in, but since we won't really be |
71 // checking for the current logged in user in our observer anyway, giving | 71 // checking for the current logged in user in our observer anyway, giving |
72 // NoDetails here is fine. | 72 // NoDetails here is fine. |
73 content::NotificationService::NoDetails()); | 73 content::NotificationService::NoDetails()); |
74 | 74 |
75 EXPECT_TRUE(PowerManagerObserverRegistered()); | 75 EXPECT_TRUE(PowerManagerObserverRegistered()); |
76 } | 76 } |
77 | 77 |
78 } // namespace chromeos | 78 } // namespace chromeos |
OLD | NEW |