| OLD | NEW |
| 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 Loading... |
| 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_ |
| OLD | NEW |