Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2001)

Unified Diff: content/public/browser/notification_database_data.cc

Issue 2300093002: Make //content responsible for generating notification Ids (Closed)
Patch Set: comments Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/browser/notification_database_data.cc
diff --git a/content/public/browser/notification_database_data.cc b/content/public/browser/notification_database_data.cc
new file mode 100644
index 0000000000000000000000000000000000000000..b942ed93bd9d7dfc45facc920336c65c31fb460d
--- /dev/null
+++ b/content/public/browser/notification_database_data.cc
@@ -0,0 +1,19 @@
+// 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/browser/notification_database_data.h"
+
+namespace content {
+
+NotificationDatabaseData::NotificationDatabaseData() = default;
+
+NotificationDatabaseData::NotificationDatabaseData(
+ const NotificationDatabaseData& other) = default;
+
+NotificationDatabaseData& NotificationDatabaseData::operator=(
+ const NotificationDatabaseData& other) = default;
+
+NotificationDatabaseData::~NotificationDatabaseData() = default;
+
+} // namespace content
« no previous file with comments | « content/public/browser/notification_database_data.h ('k') | content/public/browser/notification_event_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698