| 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 "chrome/test/remoting/remote_desktop_browsertest.h" | 5 #include "chrome/test/remoting/remote_desktop_browsertest.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include "base/command_line.h" | 9 #include "base/command_line.h" |
| 8 #include "base/files/file_util.h" | 10 #include "base/files/file_util.h" |
| 9 #include "base/json/json_reader.h" | 11 #include "base/json/json_reader.h" |
| 10 #include "base/macros.h" | 12 #include "base/macros.h" |
| 11 #include "base/path_service.h" | 13 #include "base/path_service.h" |
| 12 #include "chrome/browser/extensions/extension_service.h" | 14 #include "chrome/browser/extensions/extension_service.h" |
| 13 #include "chrome/browser/extensions/unpacked_installer.h" | 15 #include "chrome/browser/extensions/unpacked_installer.h" |
| 14 #include "chrome/browser/ui/extensions/app_launch_params.h" | 16 #include "chrome/browser/ui/extensions/app_launch_params.h" |
| 15 #include "chrome/browser/ui/extensions/application_launch.h" | 17 #include "chrome/browser/ui/extensions/application_launch.h" |
| 16 #include "chrome/browser/ui/webui/signin/login_ui_test_utils.h" | 18 #include "chrome/browser/ui/webui/signin/login_ui_test_utils.h" |
| (...skipping 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 922 | 924 |
| 923 ConditionalTimeoutWaiter homeWaiter( | 925 ConditionalTimeoutWaiter homeWaiter( |
| 924 base::TimeDelta::FromSeconds(5), | 926 base::TimeDelta::FromSeconds(5), |
| 925 base::TimeDelta::FromMilliseconds(500), | 927 base::TimeDelta::FromMilliseconds(500), |
| 926 base::Bind(&RemoteDesktopBrowserTest::IsAppModeEqualTo, | 928 base::Bind(&RemoteDesktopBrowserTest::IsAppModeEqualTo, |
| 927 this, "remoting.AppMode.HOME")); | 929 this, "remoting.AppMode.HOME")); |
| 928 EXPECT_TRUE(homeWaiter.Wait()); | 930 EXPECT_TRUE(homeWaiter.Wait()); |
| 929 } | 931 } |
| 930 | 932 |
| 931 } // namespace remoting | 933 } // namespace remoting |
| OLD | NEW |