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 #include <stddef.h> | 5 #include <stddef.h> |
6 | 6 |
7 #include "base/macros.h" | 7 #include "base/macros.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "chrome/browser/chromeos/drive/file_system_util.h" | 9 #include "chrome/browser/chromeos/drive/file_system_util.h" |
10 #include "chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h" | 10 #include "chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h" |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 MAYBE_Delete, | 176 MAYBE_Delete, |
177 FileManagerBrowserTest, | 177 FileManagerBrowserTest, |
178 ::testing::Values( | 178 ::testing::Values( |
179 TestParameter(NOT_IN_GUEST_MODE, | 179 TestParameter(NOT_IN_GUEST_MODE, |
180 "deleteMenuItemIsDisabledWhenNoItemIsSelected"), | 180 "deleteMenuItemIsDisabledWhenNoItemIsSelected"), |
181 TestParameter(NOT_IN_GUEST_MODE, "deleteOneItemFromToolbar"))); | 181 TestParameter(NOT_IN_GUEST_MODE, "deleteOneItemFromToolbar"))); |
182 | 182 |
183 WRAPPED_INSTANTIATE_TEST_CASE_P( | 183 WRAPPED_INSTANTIATE_TEST_CASE_P( |
184 DetailsPanel, | 184 DetailsPanel, |
185 FileManagerDetailsPanelBrowserTest, | 185 FileManagerDetailsPanelBrowserTest, |
186 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanel"), | 186 ::testing::Values( |
187 TestParameter(NOT_IN_GUEST_MODE, | 187 TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanel"), |
188 "openDetailsPanelForSingleFile"))); | 188 TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanelForSingleFile"), |
| 189 TestParameter(NOT_IN_GUEST_MODE, "openSingleFileAndSeeDetailsPanel"))); |
189 | 190 |
190 #if defined(DISABLE_SLOW_FILESAPP_TESTS) | 191 #if defined(DISABLE_SLOW_FILESAPP_TESTS) |
191 #define MAYBE_DirectoryTreeContextMenu DISABLED_DirectoryTreeContextMenu | 192 #define MAYBE_DirectoryTreeContextMenu DISABLED_DirectoryTreeContextMenu |
192 #else | 193 #else |
193 #define MAYBE_DirectoryTreeContextMenu DirectoryTreeContextMenu | 194 #define MAYBE_DirectoryTreeContextMenu DirectoryTreeContextMenu |
194 #endif | 195 #endif |
195 WRAPPED_INSTANTIATE_TEST_CASE_P( | 196 WRAPPED_INSTANTIATE_TEST_CASE_P( |
196 MAYBE_DirectoryTreeContextMenu, | 197 MAYBE_DirectoryTreeContextMenu, |
197 FileManagerBrowserTest, | 198 FileManagerBrowserTest, |
198 ::testing::Values( | 199 ::testing::Values( |
(...skipping 492 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
691 | 692 |
692 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { | 693 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { |
693 AddAllUsers(); | 694 AddAllUsers(); |
694 | 695 |
695 // Sanity check that normal operations work in multi-profile setting as well. | 696 // Sanity check that normal operations work in multi-profile setting as well. |
696 set_test_case_name("keyboardCopyDrive"); | 697 set_test_case_name("keyboardCopyDrive"); |
697 StartTest(); | 698 StartTest(); |
698 } | 699 } |
699 | 700 |
700 } // namespace file_manager | 701 } // namespace file_manager |
OLD | NEW |