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..6d22c8d1324fa6d248b9e2302ccf6efe39b382e3 |
--- /dev/null |
+++ b/content/public/browser/notification_database_data.cc |
@@ -0,0 +1,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/browser/notification_database_data.h" |
+ |
+namespace content { |
+ |
+NotificationDatabaseData::NotificationDatabaseData() = default; |
+ |
+NotificationDatabaseData::NotificationDatabaseData( |
+ const NotificationDatabaseData& other) = default; |
+ |
+NotificationDatabaseData::~NotificationDatabaseData() = default; |
+ |
+} // namespace content |