| 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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 FileManagerBrowserTest, | 461 FileManagerBrowserTest, |
| 462 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, | 462 ::testing::Values(TestParameter(NOT_IN_GUEST_MODE, |
| 463 "tabindexFocusDirectorySelected"))); | 463 "tabindexFocusDirectorySelected"))); |
| 464 | 464 |
| 465 // Fails on official cros trunk build. http://crbug.com/480491 | 465 // Fails on official cros trunk build. http://crbug.com/480491 |
| 466 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) | 466 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) |
| 467 #define MAYBE_TabindexOpenDialog DISABLED_TabindexOpenDialog | 467 #define MAYBE_TabindexOpenDialog DISABLED_TabindexOpenDialog |
| 468 #else | 468 #else |
| 469 #define MAYBE_TabindexOpenDialog TabindexOpenDialog | 469 #define MAYBE_TabindexOpenDialog TabindexOpenDialog |
| 470 #endif | 470 #endif |
| 471 // Flaky: crbug.com/615259 |
| 471 WRAPPED_INSTANTIATE_TEST_CASE_P( | 472 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 472 MAYBE_TabindexOpenDialog, | 473 DISABLED_TabindexOpenDialog, |
| 473 FileManagerBrowserTest, | 474 FileManagerBrowserTest, |
| 474 ::testing::Values( | 475 ::testing::Values( |
| 475 TestParameter(NOT_IN_GUEST_MODE, "tabindexOpenDialogDrive"), | 476 TestParameter(NOT_IN_GUEST_MODE, "tabindexOpenDialogDrive"), |
| 476 TestParameter(NOT_IN_GUEST_MODE, "tabindexOpenDialogDownloads"), | 477 TestParameter(NOT_IN_GUEST_MODE, "tabindexOpenDialogDownloads"), |
| 477 TestParameter(IN_GUEST_MODE, "tabindexOpenDialogDownloads"))); | 478 TestParameter(IN_GUEST_MODE, "tabindexOpenDialogDownloads"))); |
| 478 | 479 |
| 479 // Fails on official build. http://crbug.com/482121. | 480 // Fails on official build. http://crbug.com/482121. |
| 480 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) | 481 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) |
| 481 #define MAYBE_TabindexSaveFileDialog DISABLED_TabindexSaveFileDialog | 482 #define MAYBE_TabindexSaveFileDialog DISABLED_TabindexSaveFileDialog |
| 482 #else | 483 #else |
| (...skipping 209 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 | 693 |
| 693 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { | 694 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { |
| 694 AddAllUsers(); | 695 AddAllUsers(); |
| 695 | 696 |
| 696 // Sanity check that normal operations work in multi-profile setting as well. | 697 // Sanity check that normal operations work in multi-profile setting as well. |
| 697 set_test_case_name("keyboardCopyDrive"); | 698 set_test_case_name("keyboardCopyDrive"); |
| 698 StartTest(); | 699 StartTest(); |
| 699 } | 700 } |
| 700 | 701 |
| 701 } // namespace file_manager | 702 } // namespace file_manager |
| OLD | NEW |