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_HISTORY_SERVICE_H_ | 5 #ifndef CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ |
6 #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ | 6 #define CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 524 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
535 friend class FaviconService; | 535 friend class FaviconService; |
536 friend class history::HistoryBackend; | 536 friend class history::HistoryBackend; |
537 friend class history::HistoryQueryTest; | 537 friend class history::HistoryQueryTest; |
538 friend class HistoryOperation; | 538 friend class HistoryOperation; |
539 friend class HistoryQuickProviderTest; | 539 friend class HistoryQuickProviderTest; |
540 friend class HistoryURLProvider; | 540 friend class HistoryURLProvider; |
541 friend class HistoryURLProviderTest; | 541 friend class HistoryURLProviderTest; |
542 friend class history::InMemoryURLIndexTest; | 542 friend class history::InMemoryURLIndexTest; |
543 template<typename Info, typename Callback> friend class DownloadRequest; | 543 template<typename Info, typename Callback> friend class DownloadRequest; |
544 friend class PageUsageRequest; | 544 friend class PageUsageRequest; |
545 friend class ProfileWriter; | |
blundell
2014/07/08 09:19:45
The SetImportedFavicons method should just be made
jif-google
2014/07/08 13:33:27
Done.
| |
545 friend class RedirectRequest; | 546 friend class RedirectRequest; |
546 friend class TestingProfile; | 547 friend class TestingProfile; |
547 | 548 |
548 // Implementation of content::NotificationObserver. | 549 // Implementation of content::NotificationObserver. |
549 virtual void Observe(int type, | 550 virtual void Observe(int type, |
550 const content::NotificationSource& source, | 551 const content::NotificationSource& source, |
551 const content::NotificationDetails& details) OVERRIDE; | 552 const content::NotificationDetails& details) OVERRIDE; |
552 | 553 |
553 // Implementation of visitedlink::VisitedLinkDelegate. | 554 // Implementation of visitedlink::VisitedLinkDelegate. |
554 virtual void RebuildTable( | 555 virtual void RebuildTable( |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
976 scoped_ptr<history::InMemoryURLIndex> in_memory_url_index_; | 977 scoped_ptr<history::InMemoryURLIndex> in_memory_url_index_; |
977 | 978 |
978 ObserverList<history::VisitDatabaseObserver> visit_database_observers_; | 979 ObserverList<history::VisitDatabaseObserver> visit_database_observers_; |
979 | 980 |
980 history::DeleteDirectiveHandler delete_directive_handler_; | 981 history::DeleteDirectiveHandler delete_directive_handler_; |
981 | 982 |
982 DISALLOW_COPY_AND_ASSIGN(HistoryService); | 983 DISALLOW_COPY_AND_ASSIGN(HistoryService); |
983 }; | 984 }; |
984 | 985 |
985 #endif // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ | 986 #endif // CHROME_BROWSER_HISTORY_HISTORY_SERVICE_H_ |
OLD | NEW |