OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "ash/first_run/first_run_helper.h" | 5 #include "ash/first_run/first_run_helper.h" |
6 #include "ash/shell.h" | 6 #include "ash/shell.h" |
7 #include "ash/system/tray/system_tray.h" | 7 #include "ash/system/tray/system_tray.h" |
8 #include "chrome/browser/chromeos/first_run/first_run.h" | 8 #include "chrome/browser/chromeos/first_run/first_run.h" |
9 #include "chrome/browser/chromeos/first_run/first_run_controller.h" | 9 #include "chrome/browser/chromeos/first_run/first_run_controller.h" |
10 #include "chrome/browser/chromeos/first_run/step_names.h" | 10 #include "chrome/browser/chromeos/first_run/step_names.h" |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 WaitForFinalization(); | 134 WaitForFinalization(); |
135 content::RunAllPendingInMessageLoop(); | 135 content::RunAllPendingInMessageLoop(); |
136 EXPECT_EQ(controller(), (void*)NULL); | 136 EXPECT_EQ(controller(), (void*)NULL); |
137 // shell_helper() is destructed already, thats why we call Shell directly. | 137 // shell_helper() is destructed already, thats why we call Shell directly. |
138 EXPECT_FALSE(ash::Shell::GetInstance()->GetPrimarySystemTray()-> | 138 EXPECT_FALSE(ash::Shell::GetInstance()->GetPrimarySystemTray()-> |
139 HasSystemBubble()); | 139 HasSystemBubble()); |
140 } | 140 } |
141 | 141 |
142 } // namespace chromeos | 142 } // namespace chromeos |
143 | 143 |
OLD | NEW |