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

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: rebase 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
« no previous file with comments | « ui/arc/notification/DEPS ('k') | ui/arc/notification/arc_custom_notification_item.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 "ui/arc/notification/arc_notification_item.h"
10 #include "ui/arc/notification/arc_notification_surface_manager.h"
11
12 namespace arc {
13
14 class ArcCustomNotificationItem
15 : public ArcNotificationItem,
16 public ArcNotificationSurfaceManager::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 // ArcNotificationSurfaceManager::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
« no previous file with comments | « ui/arc/notification/DEPS ('k') | ui/arc/notification/arc_custom_notification_item.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698