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

Side by Side Diff: chrome/browser/extensions/api/music_manager_private/music_manager_private_browsertest.cc

Issue 15738013: Initial implementation of music manager private API. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Rebasing. Created 7 years, 6 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "chrome/browser/extensions/extension_test_message_listener.h"
6 #include "chrome/browser/extensions/platform_app_browsertest_util.h"
7
8 // This API is supported only on a subset of platforms.
9 #if defined(OS_CHROMEOS) || \
10 (defined(OS_WIN) && defined(ENABLE_RLZ))
11
12 class MusicManagerPrivateTest : public extensions::PlatformAppBrowserTest {
13 };
14
15 IN_PROC_BROWSER_TEST_F(MusicManagerPrivateTest, DeviceIdValueReturned) {
16 ASSERT_TRUE(RunPlatformAppTest(
17 "platform_apps/music_manager_private/device_id_value_returned"))
18 << message_;
19 }
20
21 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698