blob: 211f995646eaa27b236fb7ce1d8fba6c7ce1e2cf [file] [log] [blame]
// 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.
#ifndef CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_CONVERSIONS_H_
#define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_CONVERSIONS_H_
#include <string>
#include "content/common/content_export.h"
namespace blink {
struct NotificationResources;
} // namespace blink
namespace content {
struct NotificationDatabaseData;
// Parses the serialized notification data |input| into a new object, |output|.
// Returns whether the serialized |input| could be deserialized successfully.
CONTENT_EXPORT bool DeserializeNotificationDatabaseData(
const std::string& input,
NotificationDatabaseData* output);
// Serializes the contents of |input| into the string |output|. Returns whether
// the notification data could be serialized successfully.
CONTENT_EXPORT bool SerializeNotificationDatabaseData(
const NotificationDatabaseData& input,
std::string* output);
// Parses the serialized notification resources |input| into a new object,
// |output|. Returns whether the serialized |input| could be deserialized
// successfully.
CONTENT_EXPORT bool DeserializeNotificationDatabaseResources(
const std::string& input,
blink::NotificationResources* output);
// Serializes the contents of |input| into the string |output|. Returns whether
// the notification resources could be serialized successfully.
CONTENT_EXPORT bool SerializeNotificationDatabaseResources(
const blink::NotificationResources& input,
std::string* output);
} // namespace content
#endif // CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_CONVERSIONS_H_