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

Side by Side Diff: content/browser/notifications/notification_database.h

Issue 1006493005: Introduce the PlatformNotificationContext class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@n-db-ReadWriteDelete
Patch Set: Created 5 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_H_ 5 #ifndef CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_H_
6 #define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_H_ 6 #define CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/callback.h"
11 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
12 #include "base/sequence_checker.h" 11 #include "base/sequence_checker.h"
13 #include "content/common/content_export.h" 12 #include "content/common/content_export.h"
14 13
15 class GURL; 14 class GURL;
16 15
17 namespace leveldb { 16 namespace leveldb {
18 class DB; 17 class DB;
19 class Env; 18 class Env;
20 class WriteBatch; 19 class WriteBatch;
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 State state_; 114 State state_;
116 115
117 base::SequenceChecker sequence_checker_; 116 base::SequenceChecker sequence_checker_;
118 117
119 DISALLOW_COPY_AND_ASSIGN(NotificationDatabase); 118 DISALLOW_COPY_AND_ASSIGN(NotificationDatabase);
120 }; 119 };
121 120
122 } // namespace content 121 } // namespace content
123 122
124 #endif // CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_H_ 123 #endif // CONTENT_BROWSER_NOTIFICATIONS_NOTIFICATION_DATABASE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698