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

Side by Side Diff: chrome/browser/safe_browsing/safe_browsing_database_impl.cc

Issue 4007: Cleanup EOL and include guards. Lack of EOL on bloom_filter.h had broken the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 years, 3 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 "chrome/browser/safe_browsing/safe_browsing_database_impl.h" 5 #include "chrome/browser/safe_browsing/safe_browsing_database_impl.h"
6 6
7 #include "base/file_util.h" 7 #include "base/file_util.h"
8 #include "base/logging.h" 8 #include "base/logging.h"
9 #include "base/message_loop.h" 9 #include "base/message_loop.h"
10 #include "base/sha2.h" 10 #include "base/sha2.h"
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after
1206 kOnResumeHoldupMs); 1206 kOnResumeHoldupMs);
1207 } 1207 }
1208 1208
1209 void SafeBrowsingDatabaseImpl::OnResumeDone() { 1209 void SafeBrowsingDatabaseImpl::OnResumeDone() {
1210 disk_delay_ = kMaxThreadHoldupMs; 1210 disk_delay_ = kMaxThreadHoldupMs;
1211 } 1211 }
1212 1212
1213 void SafeBrowsingDatabaseImpl::SetSynchronous() { 1213 void SafeBrowsingDatabaseImpl::SetSynchronous() {
1214 asynchronous_ = false; 1214 asynchronous_ = false;
1215 } 1215 }
1216
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698