Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(621)

Side by Side Diff: components/history/core/browser/history_backend.h

Issue 1128343004: Allow favicons for synced bookmarks to expire (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698