| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 CHROME_BROWSER_HISTORY_TEXT_DATABASE_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_TEXT_DATABASE_MANAGER_H_ |
| 6 #define CHROME_BROWSER_HISTORY_TEXT_DATABASE_MANAGER_H_ | 6 #define CHROME_BROWSER_HISTORY_TEXT_DATABASE_MANAGER_H_ |
| 7 | 7 |
| 8 #include <cstddef> | 8 #include <cstddef> |
| 9 #include <set> | 9 #include <set> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 // This can be NULL if there are no indexers registered to receive indexing | 311 // This can be NULL if there are no indexers registered to receive indexing |
| 312 // data from us. | 312 // data from us. |
| 313 const HistoryPublisher* history_publisher_; | 313 const HistoryPublisher* history_publisher_; |
| 314 | 314 |
| 315 DISALLOW_COPY_AND_ASSIGN(TextDatabaseManager); | 315 DISALLOW_COPY_AND_ASSIGN(TextDatabaseManager); |
| 316 }; | 316 }; |
| 317 | 317 |
| 318 } // namespace history | 318 } // namespace history |
| 319 | 319 |
| 320 #endif // CHROME_BROWSER_HISTORY_TEXT_DATABASE_MANAGER_H_ | 320 #endif // CHROME_BROWSER_HISTORY_TEXT_DATABASE_MANAGER_H_ |
| OLD | NEW |