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

Side by Side Diff: components/history/core/browser/expire_history_backend.cc

Issue 1548113002: Switch to standard integer types in components/, part 2 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn Created 4 years, 12 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 #include "components/history/core/browser/expire_history_backend.h" 5 #include "components/history/core/browser/expire_history_backend.h"
6 6
7 #include <stddef.h>
8
7 #include <algorithm> 9 #include <algorithm>
8 #include <functional> 10 #include <functional>
9 #include <limits> 11 #include <limits>
10 12
11 #include "base/bind.h" 13 #include "base/bind.h"
12 #include "base/compiler_specific.h" 14 #include "base/compiler_specific.h"
13 #include "base/files/file_enumerator.h" 15 #include "base/files/file_enumerator.h"
14 #include "base/files/file_util.h" 16 #include "base/files/file_util.h"
15 #include "base/location.h" 17 #include "base/location.h"
16 #include "base/logging.h" 18 #include "base/logging.h"
(...skipping 484 matching lines...) Expand 10 before | Expand all | Expand 10 after
501 BroadcastNotifications(&deleted_effects, DELETION_EXPIRED); 503 BroadcastNotifications(&deleted_effects, DELETION_EXPIRED);
502 504
503 return more_to_expire; 505 return more_to_expire;
504 } 506 }
505 507
506 void ExpireHistoryBackend::ParanoidExpireHistory() { 508 void ExpireHistoryBackend::ParanoidExpireHistory() {
507 // TODO(brettw): Bug 1067331: write this to clean up any errors. 509 // TODO(brettw): Bug 1067331: write this to clean up any errors.
508 } 510 }
509 511
510 } // namespace history 512 } // namespace history
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698