OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 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 // Browser test for basic Chrome OS file manager functionality: | 5 // Browser test for basic Chrome OS file manager functionality: |
6 // - The file list is updated when a file is added externally to the Downloads | 6 // - The file list is updated when a file is added externally to the Downloads |
7 // folder. | 7 // folder. |
8 // - Selecting a file and copy-pasting it with the keyboard copies the file. | 8 // - Selecting a file and copy-pasting it with the keyboard copies the file. |
9 // - Selecting a file and pressing delete deletes it. | 9 // - Selecting a file and pressing delete deletes it. |
10 | 10 |
(...skipping 18 matching lines...) Expand all Loading... |
29 #include "base/time/time.h" | 29 #include "base/time/time.h" |
30 #include "chrome/browser/browser_process.h" | 30 #include "chrome/browser/browser_process.h" |
31 #include "chrome/browser/chrome_notification_types.h" | 31 #include "chrome/browser/chrome_notification_types.h" |
32 #include "chrome/browser/chromeos/drive/drive_integration_service.h" | 32 #include "chrome/browser/chromeos/drive/drive_integration_service.h" |
33 #include "chrome/browser/chromeos/drive/file_system_interface.h" | 33 #include "chrome/browser/chromeos/drive/file_system_interface.h" |
34 #include "chrome/browser/chromeos/drive/test_util.h" | 34 #include "chrome/browser/chromeos/drive/test_util.h" |
35 #include "chrome/browser/chromeos/file_manager/app_id.h" | 35 #include "chrome/browser/chromeos/file_manager/app_id.h" |
36 #include "chrome/browser/chromeos/file_manager/drive_test_util.h" | 36 #include "chrome/browser/chromeos/file_manager/drive_test_util.h" |
37 #include "chrome/browser/chromeos/file_manager/path_util.h" | 37 #include "chrome/browser/chromeos/file_manager/path_util.h" |
38 #include "chrome/browser/chromeos/file_manager/volume_manager.h" | 38 #include "chrome/browser/chromeos/file_manager/volume_manager.h" |
39 #include "chrome/browser/chromeos/login/user_manager.h" | 39 #include "chrome/browser/chromeos/login/users/user_manager.h" |
40 #include "chrome/browser/chromeos/profiles/profile_helper.h" | 40 #include "chrome/browser/chromeos/profiles/profile_helper.h" |
41 #include "chrome/browser/drive/fake_drive_service.h" | 41 #include "chrome/browser/drive/fake_drive_service.h" |
42 #include "chrome/browser/extensions/component_loader.h" | 42 #include "chrome/browser/extensions/component_loader.h" |
43 #include "chrome/browser/extensions/extension_apitest.h" | 43 #include "chrome/browser/extensions/extension_apitest.h" |
44 #include "chrome/browser/extensions/extension_test_message_listener.h" | 44 #include "chrome/browser/extensions/extension_test_message_listener.h" |
45 #include "chrome/browser/profiles/profile.h" | 45 #include "chrome/browser/profiles/profile.h" |
46 #include "chrome/browser/profiles/profile_manager.h" | 46 #include "chrome/browser/profiles/profile_manager.h" |
47 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" | 47 #include "chrome/browser/ui/ash/multi_user/multi_user_util.h" |
48 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" | 48 #include "chrome/browser/ui/ash/multi_user/multi_user_window_manager.h" |
49 #include "chrome/common/chrome_switches.h" | 49 #include "chrome/common/chrome_switches.h" |
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 // (bob and charlie) are added in the test. Thus the existing test verifies | 1063 // (bob and charlie) are added in the test. Thus the existing test verifies |
1064 // that the feature is effectively working with lastly logged in users. | 1064 // that the feature is effectively working with lastly logged in users. |
1065 AddExtraUsersForStressTesting(); | 1065 AddExtraUsersForStressTesting(); |
1066 | 1066 |
1067 set_test_case_name("multiProfileVisitDesktopMenu"); | 1067 set_test_case_name("multiProfileVisitDesktopMenu"); |
1068 StartTest(); | 1068 StartTest(); |
1069 } | 1069 } |
1070 | 1070 |
1071 } // namespace | 1071 } // namespace |
1072 } // namespace file_manager | 1072 } // namespace file_manager |
OLD | NEW |