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

Unified Diff: content/browser/media/session/audio_focus_delegate_default_browsertest.cc

Issue 2448013004: Follow-up rename of MediaSessionDelegate->AudioFocusDelegate (Closed)
Patch Set: Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/browser/media/session/audio_focus_delegate_default_browsertest.cc
diff --git a/content/browser/media/session/audio_focus_delegate_default_browsertest.cc b/content/browser/media/session/audio_focus_delegate_default_browsertest.cc
index 8456748e59fe2dc50ebc31b9fffee29983af8cce..d815f8c7843bb87c4d166d2d46ceb77fdfaef33e 100644
--- a/content/browser/media/session/audio_focus_delegate_default_browsertest.cc
+++ b/content/browser/media/session/audio_focus_delegate_default_browsertest.cc
@@ -12,7 +12,7 @@
namespace content {
-class MediaSessionDelegateDefaultBrowserTest : public ContentBrowserTest {
+class AudioFocusDelegateDefaultBrowserTest : public ContentBrowserTest {
protected:
void SetUpCommandLine(base::CommandLine* command_line) override {
command_line->AppendSwitch(switches::kEnableDefaultMediaSession);
@@ -46,19 +46,19 @@ class MediaSessionDelegateDefaultBrowserTest : public ContentBrowserTest {
};
// Two windows from the same BrowserContext.
-IN_PROC_BROWSER_TEST_F(MediaSessionDelegateDefaultBrowserTest,
+IN_PROC_BROWSER_TEST_F(AudioFocusDelegateDefaultBrowserTest,
ActiveWebContentsPauseOthers) {
Run(shell()->web_contents(), CreateBrowser()->web_contents());
}
// Regular BrowserContext is interrupted by OffTheRecord one.
-IN_PROC_BROWSER_TEST_F(MediaSessionDelegateDefaultBrowserTest,
+IN_PROC_BROWSER_TEST_F(AudioFocusDelegateDefaultBrowserTest,
RegularBrowserInterruptsOffTheRecord) {
Run(shell()->web_contents(), CreateOffTheRecordBrowser()->web_contents());
}
// OffTheRecord BrowserContext is interrupted by regular one.
-IN_PROC_BROWSER_TEST_F(MediaSessionDelegateDefaultBrowserTest,
+IN_PROC_BROWSER_TEST_F(AudioFocusDelegateDefaultBrowserTest,
OffTheRecordInterruptsRegular) {
Run(CreateOffTheRecordBrowser()->web_contents(), shell()->web_contents());
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698