Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(432)

Side by Side Diff: chrome/browser/chromeos/file_manager/audio_player_browsertest.cc

Issue 1526923002: AudioPlayer: Add UI tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 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 "chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h" 5 #include "chrome/browser/chromeos/file_manager/file_manager_browsertest_base.h"
6 6
7 namespace file_manager { 7 namespace file_manager {
8 8
9 template <GuestMode M> 9 template <GuestMode M>
10 class AudioPlayerBrowserTestBase : public FileManagerBrowserTestBase { 10 class AudioPlayerBrowserTestBase : public FileManagerBrowserTestBase {
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 #if defined(MEMORY_SANITIZER) 50 #if defined(MEMORY_SANITIZER)
51 #define MAYBE_OpenAudioOnDrive DISABLED_OpenAudioOnDrive 51 #define MAYBE_OpenAudioOnDrive DISABLED_OpenAudioOnDrive
52 #else 52 #else
53 #define MAYBE_OpenAudioOnDrive OpenAudioOnDrive 53 #define MAYBE_OpenAudioOnDrive OpenAudioOnDrive
54 #endif 54 #endif
55 IN_PROC_BROWSER_TEST_F(AudioPlayerBrowserTest, MAYBE_OpenAudioOnDrive) { 55 IN_PROC_BROWSER_TEST_F(AudioPlayerBrowserTest, MAYBE_OpenAudioOnDrive) {
56 set_test_case_name("openAudioOnDrive"); 56 set_test_case_name("openAudioOnDrive");
57 StartTest(); 57 StartTest();
58 } 58 }
59 59
60 #if defined(MEMORY_SANITIZER)
61 #define MAYBE_ClickControlButtons DISABLED_ClickControlButtons
62 #else
63 #define MAYBE_ClickControlButtons ClickControlButtons
64 #endif
65 IN_PROC_BROWSER_TEST_F(AudioPlayerBrowserTest, MAYBE_ClickControlButtons) {
66 set_test_case_name("clickControlButtons");
67 StartTest();
68 }
69
60 } // namespace file_manager 70 } // namespace file_manager
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698