blob: 75619a0a0a6fce28b57547d87861f11fe6d7e9e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/public/common/notification_resources.h"
namespace content {
NotificationResources::NotificationResources() {}
NotificationResources::NotificationResources(
const NotificationResources& other) = default;
NotificationResources::~NotificationResources() {}
} // namespace content
|