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

Side by Side Diff: ui/arc/notification/arc_custom_notification_item.h

Issue 2066853002: arc: Show custom notification via notification surface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@notification-exo
Patch Set: for comments in #2 Created 4 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 2016 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 #ifndef UI_ARC_NOTIFICATION_ARC_CUSTOM_NOTIFICATION_ITEM_H_
6 #define UI_ARC_NOTIFICATION_ARC_CUSTOM_NOTIFICATION_ITEM_H_
7
8 #include "base/macros.h"
9 #include "components/exo/notification_surface_registry.h"
10 #include "ui/arc/notification/arc_notification_item.h"
11
12 namespace arc {
13
14 class ArcCustomNotificationItem
15 : public ArcNotificationItem,
16 public exo::NotificationSurfaceRegistry::Observer {
17 public:
18 ArcCustomNotificationItem(ArcNotificationManager* manager,
19 message_center::MessageCenter* message_center,
20 const std::string& notification_key,
21 const AccountId& profile_id);
22 ~ArcCustomNotificationItem() override;
23
24 void UpdateWithArcNotificationData(
25 const mojom::ArcNotificationData& data) override;
26
27 private:
28 // NotificationSurfaceRegistry::Observer
29 void OnNotificationSurfaceAdded(exo::NotificationSurface* surface) override;
30 void OnNotificationSurfaceRemoved(exo::NotificationSurface* surface) override;
31
32 DISALLOW_COPY_AND_ASSIGN(ArcCustomNotificationItem);
33 };
34
35 } // namespace arc
36
37 #endif // UI_ARC_NOTIFICATION_ARC_CUSTOM_NOTIFICATION_ITEM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698