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_TOP_SITES_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_TOP_SITES_BACKEND_H_ |
6 #define CHROME_BROWSER_HISTORY_TOP_SITES_BACKEND_H_ | 6 #define CHROME_BROWSER_HISTORY_TOP_SITES_BACKEND_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
| 9 #include "base/callback_old.h" |
9 #include "base/file_path.h" | 10 #include "base/file_path.h" |
10 #include "base/memory/ref_counted.h" | 11 #include "base/memory/ref_counted.h" |
11 #include "base/memory/scoped_ptr.h" | 12 #include "base/memory/scoped_ptr.h" |
12 #include "chrome/browser/history/history_types.h" | 13 #include "chrome/browser/history/history_types.h" |
13 #include "content/browser/cancelable_request.h" | 14 #include "content/browser/cancelable_request.h" |
14 | 15 |
15 class FilePath; | 16 class FilePath; |
16 | 17 |
17 namespace history { | 18 namespace history { |
18 | 19 |
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 FilePath db_path_; | 98 FilePath db_path_; |
98 | 99 |
99 scoped_ptr<TopSitesDatabase> db_; | 100 scoped_ptr<TopSitesDatabase> db_; |
100 | 101 |
101 DISALLOW_COPY_AND_ASSIGN(TopSitesBackend); | 102 DISALLOW_COPY_AND_ASSIGN(TopSitesBackend); |
102 }; | 103 }; |
103 | 104 |
104 } // namespace history | 105 } // namespace history |
105 | 106 |
106 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_BACKEND_H_ | 107 #endif // CHROME_BROWSER_HISTORY_TOP_SITES_BACKEND_H_ |
OLD | NEW |