chromium/chrome/browser/status_icons/desktop_notification_balloon.cc

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

#include "chrome/browser/status_icons/desktop_notification_balloon.h"

#include <stddef.h>

#include "base/strings/string_number_conversions.h"
#include "base/threading/thread_restrictions.h"
#include "chrome/browser/notifications/notification_display_service.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "ui/gfx/image/image_skia.h"
#include "ui/message_center/public/cpp/notification.h"
#include "ui/message_center/public/cpp/notification_delegate.h"
#include "ui/message_center/public/cpp/notification_types.h"
#include "ui/message_center/public/cpp/notifier_id.h"

namespace {

// Prefix added to the notification ids.
const char kDesktopNotificationPrefix[] =;

}  // anonymous namespace

int DesktopNotificationBalloon::id_count_ =;

DesktopNotificationBalloon::DesktopNotificationBalloon() {}

DesktopNotificationBalloon::~DesktopNotificationBalloon() {}

void DesktopNotificationBalloon::DisplayBalloon(
    const ui::ImageModel& icon,
    const std::u16string& title,
    const std::u16string& contents,
    const message_center::NotifierId& notifier_id) {}