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

ash / public / cpp / notifier_metadata.h [blame]

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

#ifndef ASH_PUBLIC_CPP_NOTIFIER_METADATA_H_
#define ASH_PUBLIC_CPP_NOTIFIER_METADATA_H_

#include <string>

#include "ash/public/cpp/ash_public_export.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/message_center/public/cpp/notifier_id.h"

namespace ash {

// Ash-specific information about a Message Center notifier.
struct ASH_PUBLIC_EXPORT NotifierMetadata {
  NotifierMetadata();
  NotifierMetadata(const NotifierMetadata& other);
  NotifierMetadata(NotifierMetadata&& other);
  NotifierMetadata(const message_center::NotifierId& notifier_id,
                   const std::u16string& name,
                   bool enabled,
                   bool enforced,
                   const gfx::ImageSkia& icon);

  ~NotifierMetadata();

  NotifierMetadata& operator=(const NotifierMetadata& other);
  NotifierMetadata& operator=(NotifierMetadata&& other);

  // The notifier (e.g. an extension).
  message_center::NotifierId notifier_id;

  // The user-visible name of the notifier (e.g. an extension's name).
  std::u16string name;

  // True if notifications from the notifier are presently enabled.
  bool enabled = false;

  // True if the setting is enforced by administrator and the user can't change.
  bool enforced = false;

  // An icon displayed next to the name.
  gfx::ImageSkia icon;
};

}  // namespace ash

#endif  // ASH_PUBLIC_CPP_NOTIFIER_METADATA_H_