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 COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_ | 5 #ifndef COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_ |
6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_ | 6 #define COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_ |
7 | 7 |
8 #include <set> | 8 #include <set> |
9 #include <string> | 9 #include <string> |
10 #include <utility> | 10 #include <utility> |
(...skipping 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
485 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 485 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
486 UpdateFaviconMappingsAndFetchNoChange); | 486 UpdateFaviconMappingsAndFetchNoChange); |
487 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, MergeFaviconPageURLNotInDB); | 487 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, MergeFaviconPageURLNotInDB); |
488 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, MergeFaviconPageURLInDB); | 488 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, MergeFaviconPageURLInDB); |
489 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, MergeFaviconMaxFaviconsPerPage); | 489 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, MergeFaviconMaxFaviconsPerPage); |
490 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 490 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
491 MergeFaviconIconURLMappedToDifferentPageURL); | 491 MergeFaviconIconURLMappedToDifferentPageURL); |
492 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 492 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
493 MergeFaviconMaxFaviconBitmapsPerIconURL); | 493 MergeFaviconMaxFaviconBitmapsPerIconURL); |
494 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 494 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
| 495 MergeIdenticalFaviconDoesNotChangeLastUpdatedTime); |
| 496 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
495 UpdateFaviconMappingsAndFetchMultipleIconTypes); | 497 UpdateFaviconMappingsAndFetchMultipleIconTypes); |
496 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, GetFaviconsFromDBEmpty); | 498 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, GetFaviconsFromDBEmpty); |
497 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 499 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
498 GetFaviconsFromDBNoFaviconBitmaps); | 500 GetFaviconsFromDBNoFaviconBitmaps); |
499 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 501 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
500 GetFaviconsFromDBSelectClosestMatch); | 502 GetFaviconsFromDBSelectClosestMatch); |
501 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, GetFaviconsFromDBIconType); | 503 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, GetFaviconsFromDBIconType); |
502 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, GetFaviconsFromDBExpired); | 504 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, GetFaviconsFromDBExpired); |
503 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, | 505 FRIEND_TEST_ALL_PREFIXES(HistoryBackendTest, |
504 UpdateFaviconMappingsAndFetchNoDB); | 506 UpdateFaviconMappingsAndFetchNoDB); |
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
817 | 819 |
818 // List of observers | 820 // List of observers |
819 ObserverList<HistoryBackendObserver> observers_; | 821 ObserverList<HistoryBackendObserver> observers_; |
820 | 822 |
821 DISALLOW_COPY_AND_ASSIGN(HistoryBackend); | 823 DISALLOW_COPY_AND_ASSIGN(HistoryBackend); |
822 }; | 824 }; |
823 | 825 |
824 } // namespace history | 826 } // namespace history |
825 | 827 |
826 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_ | 828 #endif // COMPONENTS_HISTORY_CORE_BROWSER_HISTORY_BACKEND_H_ |
OLD | NEW |