chromium/content/browser/notifications/notification_id_generator.cc

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

#include "content/browser/notifications/notification_id_generator.h"

#include <sstream>
#include <string_view>

#include "base/check_op.h"
#include "base/strings/string_number_conversions.h"
#include "base/strings/stringprintf.h"
#include "base/strings/utf_string_conversions.h"
#include "url/gurl.h"

namespace content {
namespace {

const char kNotificationTagSeparator =;
const char kPersistentNotificationPrefix =;
const char kNonPersistentNotificationPrefix =;
const char kNotificationShownByBrowserFlag =;

}  // namespace

// static
bool NotificationIdGenerator::IsPersistentNotification(
    const std::string_view& notification_id) {}

// static
bool NotificationIdGenerator::IsNonPersistentNotification(
    const std::string_view& notification_id) {}

// Notification Id is of the following format:
// p[b]#<origin>#[1|0][<developer_tag>|persistent_notification_id]
std::string NotificationIdGenerator::GenerateForPersistentNotification(
    const GURL& origin,
    const std::string& tag,
    bool is_shown_by_browser,
    int64_t persistent_notification_id) const {}

// Notification Id is of the following format:
// n#<origin>#<token>
std::string NotificationIdGenerator::GenerateForNonPersistentNotification(
    const url::Origin& origin,
    const std::string& token) const {}

}  // namespace content