| 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_EXPIRE_HISTORY_BACKEND_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_EXPIRE_HISTORY_BACKEND_H_ |
| 6 #define CHROME_BROWSER_HISTORY_EXPIRE_HISTORY_BACKEND_H_ | 6 #define CHROME_BROWSER_HISTORY_EXPIRE_HISTORY_BACKEND_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <queue> | 9 #include <queue> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
| 14 #include "base/gtest_prod_util.h" | 14 #include "base/gtest_prod_util.h" |
| 15 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 16 #include "base/memory/weak_ptr.h" | 16 #include "base/memory/weak_ptr.h" |
| 17 #include "base/task.h" | |
| 18 #include "base/time.h" | 17 #include "base/time.h" |
| 19 #include "chrome/browser/history/history_types.h" | 18 #include "chrome/browser/history/history_types.h" |
| 20 | 19 |
| 21 class BookmarkService; | 20 class BookmarkService; |
| 22 class GURL; | 21 class GURL; |
| 23 class TestingProfile; | 22 class TestingProfile; |
| 24 | 23 |
| 25 namespace history { | 24 namespace history { |
| 26 | 25 |
| 27 class ArchivedDatabase; | 26 class ArchivedDatabase; |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 // Use GetBookmarkService to access this, which makes sure the service is | 277 // Use GetBookmarkService to access this, which makes sure the service is |
| 279 // loaded. | 278 // loaded. |
| 280 BookmarkService* bookmark_service_; | 279 BookmarkService* bookmark_service_; |
| 281 | 280 |
| 282 DISALLOW_COPY_AND_ASSIGN(ExpireHistoryBackend); | 281 DISALLOW_COPY_AND_ASSIGN(ExpireHistoryBackend); |
| 283 }; | 282 }; |
| 284 | 283 |
| 285 } // namespace history | 284 } // namespace history |
| 286 | 285 |
| 287 #endif // CHROME_BROWSER_HISTORY_EXPIRE_HISTORY_BACKEND_H_ | 286 #endif // CHROME_BROWSER_HISTORY_EXPIRE_HISTORY_BACKEND_H_ |
| OLD | NEW |