| 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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 #endif | 192 #endif |
| 193 WRAPPED_INSTANTIATE_TEST_CASE_P( | 193 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 194 MAYBE_Delete, | 194 MAYBE_Delete, |
| 195 FileManagerBrowserTest, | 195 FileManagerBrowserTest, |
| 196 ::testing::Values( | 196 ::testing::Values( |
| 197 TestParameter(NOT_IN_GUEST_MODE, | 197 TestParameter(NOT_IN_GUEST_MODE, |
| 198 "deleteMenuItemIsDisabledWhenNoItemIsSelected"), | 198 "deleteMenuItemIsDisabledWhenNoItemIsSelected"), |
| 199 TestParameter(NOT_IN_GUEST_MODE, "deleteOneItemFromToolbar"))); | 199 TestParameter(NOT_IN_GUEST_MODE, "deleteOneItemFromToolbar"))); |
| 200 | 200 |
| 201 WRAPPED_INSTANTIATE_TEST_CASE_P( | 201 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 202 QuickView, | 202 DISABLED_QuickView, |
| 203 FileManagerBrowserTest, | 203 FileManagerBrowserTest, |
| 204 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, "openQuickView"))); | 204 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, "openQuickView"))); |
| 205 | 205 |
| 206 WRAPPED_INSTANTIATE_TEST_CASE_P( | 206 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 207 DetailsPanel, | 207 DetailsPanel, |
| 208 FileManagerDetailsPanelBrowserTest, | 208 FileManagerDetailsPanelBrowserTest, |
| 209 ::testing::Values( | 209 ::testing::Values( |
| 210 TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanel"), | 210 TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanel"), |
| 211 TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanelForSingleFile"), | 211 TestParameter(NOT_IN_GUEST_MODE, "openDetailsPanelForSingleFile"), |
| 212 TestParameter(NOT_IN_GUEST_MODE, "openSingleFileAndSeeDetailsPanel"))); | 212 TestParameter(NOT_IN_GUEST_MODE, "openSingleFileAndSeeDetailsPanel"))); |
| (...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 717 | 717 |
| 718 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { | 718 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { |
| 719 AddAllUsers(); | 719 AddAllUsers(); |
| 720 | 720 |
| 721 // Sanity check that normal operations work in multi-profile setting as well. | 721 // Sanity check that normal operations work in multi-profile setting as well. |
| 722 set_test_case_name("keyboardCopyDrive"); | 722 set_test_case_name("keyboardCopyDrive"); |
| 723 StartTest(); | 723 StartTest(); |
| 724 } | 724 } |
| 725 | 725 |
| 726 } // namespace file_manager | 726 } // namespace file_manager |
| OLD | NEW |