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

Side by Side Diff: content/browser/appcache/appcache_storage_impl.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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 "content/browser/appcache/appcache_storage_impl.h" 5 #include "content/browser/appcache/appcache_storage_impl.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 #include <set> 12 #include <set>
11 #include <vector> 13 #include <vector>
12 14
13 #include "base/bind.h" 15 #include "base/bind.h"
14 #include "base/bind_helpers.h" 16 #include "base/bind_helpers.h"
15 #include "base/files/file_util.h" 17 #include "base/files/file_util.h"
16 #include "base/location.h" 18 #include "base/location.h"
(...skipping 1972 matching lines...) Expand 10 before | Expand all | Expand 10 after
1989 1991
1990 void AppCacheStorageImpl::OnLazyCommitTimer() { 1992 void AppCacheStorageImpl::OnLazyCommitTimer() {
1991 lazy_commit_timer_.Stop(); 1993 lazy_commit_timer_.Stop();
1992 if (is_disabled()) 1994 if (is_disabled())
1993 return; 1995 return;
1994 scoped_refptr<DatabaseTask> task(new CommitLastAccessTimesTask(this)); 1996 scoped_refptr<DatabaseTask> task(new CommitLastAccessTimesTask(this));
1995 task->Schedule(); 1997 task->Schedule();
1996 } 1998 }
1997 1999
1998 } // namespace content 2000 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/appcache/appcache_storage_impl.h ('k') | content/browser/appcache/appcache_storage_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698