diff options
Diffstat (limited to 'webkit/support/simple_database_system.cc')
-rw-r--r-- | webkit/support/simple_database_system.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/webkit/support/simple_database_system.cc b/webkit/support/simple_database_system.cc index 1f2f0b5..77fec92 100644 --- a/webkit/support/simple_database_system.cc +++ b/webkit/support/simple_database_system.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2011 The Chromium Authors. All rights reserved. +// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -246,7 +246,9 @@ void SimpleDatabaseSystem::VfsDeleteFile( *result = VfsBackend::DeleteFile(file_name, sync_dir); } while ((++num_retries < kNumDeleteRetries) && (*result == SQLITE_IOERR_DELETE) && - (base::PlatformThread::Sleep(10), 1)); + (base::PlatformThread::Sleep( + base::TimeDelta::FromMilliseconds(10)), + 1)); done_event->Signal(); } |