| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEB_HISTORY_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_WEB_HISTORY_SERVICE_H_ |
| 6 #define CHROME_BROWSER_HISTORY_WEB_HISTORY_SERVICE_H_ | 6 #define CHROME_BROWSER_HISTORY_WEB_HISTORY_SERVICE_H_ |
| 7 | 7 |
| 8 #include <set> | 8 #include <set> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "chrome/browser/history/history_types.h" | |
| 12 #include "chrome/browser/profiles/profile.h" | 11 #include "chrome/browser/profiles/profile.h" |
| 12 #include "components/history/core/browser/history_types.h" |
| 13 #include "components/keyed_service/core/keyed_service.h" | 13 #include "components/keyed_service/core/keyed_service.h" |
| 14 | 14 |
| 15 namespace base { | 15 namespace base { |
| 16 class DictionaryValue; | 16 class DictionaryValue; |
| 17 } | 17 } |
| 18 | 18 |
| 19 namespace net { | 19 namespace net { |
| 20 class URLFetcher; | 20 class URLFetcher; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 std::set<Request*> pending_expire_requests_; | 105 std::set<Request*> pending_expire_requests_; |
| 106 | 106 |
| 107 base::WeakPtrFactory<WebHistoryService> weak_ptr_factory_; | 107 base::WeakPtrFactory<WebHistoryService> weak_ptr_factory_; |
| 108 | 108 |
| 109 DISALLOW_COPY_AND_ASSIGN(WebHistoryService); | 109 DISALLOW_COPY_AND_ASSIGN(WebHistoryService); |
| 110 }; | 110 }; |
| 111 | 111 |
| 112 } // namespace history | 112 } // namespace history |
| 113 | 113 |
| 114 #endif // CHROME_BROWSER_HISTORY_WEB_HISTORY_SERVICE_H_ | 114 #endif // CHROME_BROWSER_HISTORY_WEB_HISTORY_SERVICE_H_ |
| OLD | NEW |