Chromium Code Reviews| 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 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 476 TestParameter(NOT_IN_GUEST_MODE, "tabindexOpenDialogDownloads"), | 476 TestParameter(NOT_IN_GUEST_MODE, "tabindexOpenDialogDownloads"), |
| 477 TestParameter(IN_GUEST_MODE, "tabindexOpenDialogDownloads"))); | 477 TestParameter(IN_GUEST_MODE, "tabindexOpenDialogDownloads"))); |
| 478 | 478 |
| 479 // Fails on official build. http://crbug.com/482121. | 479 // Fails on official build. http://crbug.com/482121. |
| 480 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) | 480 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) |
| 481 #define MAYBE_TabindexSaveFileDialog DISABLED_TabindexSaveFileDialog | 481 #define MAYBE_TabindexSaveFileDialog DISABLED_TabindexSaveFileDialog |
| 482 #else | 482 #else |
| 483 #define MAYBE_TabindexSaveFileDialog TabindexSaveFileDialog | 483 #define MAYBE_TabindexSaveFileDialog TabindexSaveFileDialog |
| 484 #endif | 484 #endif |
| 485 WRAPPED_INSTANTIATE_TEST_CASE_P( | 485 WRAPPED_INSTANTIATE_TEST_CASE_P( |
| 486 MAYBE_TabindexSaveFileDialog, | 486 DISABLED_TabindexSaveFileDialog, |
|
fukino
2016/06/01 00:44:23
Please add a reference to the bug
| |
| 487 FileManagerBrowserTest, | 487 FileManagerBrowserTest, |
| 488 ::testing::Values( | 488 ::testing::Values( |
| 489 TestParameter(NOT_IN_GUEST_MODE, "tabindexSaveFileDialogDrive"), | 489 TestParameter(NOT_IN_GUEST_MODE, "tabindexSaveFileDialogDrive"), |
| 490 TestParameter(NOT_IN_GUEST_MODE, "tabindexSaveFileDialogDownloads"), | 490 TestParameter(NOT_IN_GUEST_MODE, "tabindexSaveFileDialogDownloads"), |
| 491 TestParameter(IN_GUEST_MODE, "tabindexSaveFileDialogDownloads"))); | 491 TestParameter(IN_GUEST_MODE, "tabindexSaveFileDialogDownloads"))); |
| 492 | 492 |
| 493 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) | 493 #if defined(DISABLE_SLOW_FILESAPP_TESTS) || defined(OFFICIAL_BUILD) |
| 494 #define MAYBE_OpenFileDialog DISABLED_OpenFileDialog | 494 #define MAYBE_OpenFileDialog DISABLED_OpenFileDialog |
| 495 #else | 495 #else |
| 496 #define MAYBE_OpenFileDialog OpenFileDialog | 496 #define MAYBE_OpenFileDialog OpenFileDialog |
| (...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 692 | 692 |
| 693 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { | 693 IN_PROC_BROWSER_TEST_F(MultiProfileFileManagerBrowserTest, MAYBE_BasicDrive) { |
| 694 AddAllUsers(); | 694 AddAllUsers(); |
| 695 | 695 |
| 696 // 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. |
| 697 set_test_case_name("keyboardCopyDrive"); | 697 set_test_case_name("keyboardCopyDrive"); |
| 698 StartTest(); | 698 StartTest(); |
| 699 } | 699 } |
| 700 | 700 |
| 701 } // namespace file_manager | 701 } // namespace file_manager |
| OLD | NEW |