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
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76

ash / public / cpp / notification_utils.cc [blame]

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "ash/public/cpp/notification_utils.h"

#include "ui/chromeos/styles/cros_tokens_color_mappings.h"
#include "ui/gfx/vector_icon_types.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_delegate.h"

namespace ash {

message_center::Notification CreateSystemNotification(
    message_center::NotificationType type,
    const std::string& id,
    const std::u16string& title,
    const std::u16string& message,
    const std::u16string& display_source,
    const GURL& origin_url,
    const message_center::NotifierId& notifier_id,
    const message_center::RichNotificationData& optional_fields,
    scoped_refptr<message_center::NotificationDelegate> delegate,
    const gfx::VectorIcon& small_image,
    message_center::SystemNotificationWarningLevel warning_level) {
  DCHECK_EQ(message_center::NotifierType::SYSTEM_COMPONENT, notifier_id.type);

  message_center::Notification notification{type,
                                            id,
                                            title,
                                            message,
                                            ui::ImageModel(),
                                            display_source,
                                            origin_url,
                                            notifier_id,
                                            optional_fields,
                                            delegate};
  ui::ColorId color_id = cros_tokens::kCrosSysPrimary;
  switch (warning_level) {
    case message_center::SystemNotificationWarningLevel::NORMAL:
      color_id = cros_tokens::kCrosSysPrimary;
      break;
    case message_center::SystemNotificationWarningLevel::WARNING:
      color_id = cros_tokens::kCrosSysWarning;
      break;
    case message_center::SystemNotificationWarningLevel::CRITICAL_WARNING:
      color_id = cros_tokens::kCrosSysError;
      break;
  }
  notification.set_accent_color_id(color_id);

  notification.set_system_notification_warning_level(warning_level);
  if (!small_image.is_empty())
    notification.set_vector_small_image(small_image);
  return notification;
}

std::unique_ptr<message_center::Notification> CreateSystemNotificationPtr(
    message_center::NotificationType type,
    const std::string& id,
    const std::u16string& title,
    const std::u16string& message,
    const std::u16string& display_source,
    const GURL& origin_url,
    const message_center::NotifierId& notifier_id,
    const message_center::RichNotificationData& optional_fields,
    scoped_refptr<message_center::NotificationDelegate> delegate,
    const gfx::VectorIcon& small_image,
    message_center::SystemNotificationWarningLevel warning_level) {
  return std::make_unique<message_center::Notification>(
      CreateSystemNotification(type, id, title, message, display_source,
                               origin_url, notifier_id, optional_fields,
                               delegate, small_image, warning_level));
}

}  // namespace ash