summaryrefslogtreecommitdiff
path: root/chromium/ui/message_center/views/message_view_factory.h
blob: 883257ebff7241973998637c2fa86005b5779fac (plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Copyright 2016 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 UI_MESSAGE_CENTER_MESSAGE_VIEW_FACTORY_H_
#define UI_MESSAGE_CENTER_MESSAGE_VIEW_FACTORY_H_

#include "ui/message_center/message_center_export.h"

#include <memory>

#include "base/callback_forward.h"

namespace message_center {

class MessageView;
class Notification;

// Creates appropriate MessageViews for notifications depending on the
// notification type. A notification is top level if it needs to be rendered
// outside the browser window. No custom shadows are created for top level
// notifications on Linux with Aura.
class MESSAGE_CENTER_EXPORT MessageViewFactory {
 public:
  // A function that creates MessageView for a NOTIFICATION_TYPE_CUSTOM
  // notification.
  typedef base::Callback<std::unique_ptr<MessageView>(const Notification&)>
      CustomMessageViewFactoryFunction;

  static MessageView* Create(const Notification& notification, bool top_level);

  // Sets the function that will be invoked to create a custom notification
  // view. This should be a repeating callback. It's an error to attempt to show
  // a custom notification without first having called this function. Currently,
  // only ARC uses custom notifications, so this doesn't need to distinguish
  // between various sources of custom notification.
  static void SetCustomNotificationViewFactory(
      const CustomMessageViewFactoryFunction& factory_function);

  // Returns whether the custom view factory function has already been set.
  static bool HasCustomNotificationViewFactory();
};

}  // namespace message_center

#endif  // UI_MESSAGE_CENTER_MESSAGE_VIEW_FACTORY_H_