forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmedia_notification_constants.h
29 lines (20 loc) · 1.05 KB
/
media_notification_constants.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_MEDIA_MEDIA_NOTIFICATION_CONSTANTS_H_
#define ASH_MEDIA_MEDIA_NOTIFICATION_CONSTANTS_H_
#include "ash/ash_export.h"
namespace ash {
// The custom view type that should be set on media session notifications.
ASH_EXPORT extern const char kMediaSessionNotificationCustomViewType[];
// The notifier ID associated with the media session service.
ASH_EXPORT extern const char kMediaSessionNotifierId[];
// The minimum size in px that the media session artwork can be to be displayed
// in the notification.
ASH_EXPORT extern const int kMediaSessionNotificationArtworkMinSize;
// The desired size in px for the media session artwork to be displayed in the
// notification. The media session service will try and select artwork closest
// to this size.
ASH_EXPORT extern const int kMediaSessionNotificationArtworkDesiredSize;
} // namespace ash
#endif // ASH_MEDIA_MEDIA_NOTIFICATION_CONSTANTS_H_