| Index: content/browser/storage_partition_impl_unittest.cc
|
| diff --git a/content/browser/storage_partition_impl_unittest.cc b/content/browser/storage_partition_impl_unittest.cc
|
| index 937b33926ddfed2d936201b03cea82c30441d1bb..e4b790967b284bb02f743cdb696c7123c4fff752 100644
|
| --- a/content/browser/storage_partition_impl_unittest.cc
|
| +++ b/content/browser/storage_partition_impl_unittest.cc
|
| @@ -2,8 +2,12 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/files/file_util.h"
|
| #include "base/location.h"
|
| +#include "base/macros.h"
|
| #include "base/run_loop.h"
|
| #include "base/single_thread_task_runner.h"
|
| #include "base/thread_task_runner_handle.h"
|
| @@ -56,7 +60,7 @@ const storage::StorageType kPersistent = storage::kStorageTypePersistent;
|
|
|
| const storage::QuotaClient::ID kClientFile = storage::QuotaClient::kFileSystem;
|
|
|
| -const uint32 kAllQuotaRemoveMask =
|
| +const uint32_t kAllQuotaRemoveMask =
|
| StoragePartition::REMOVE_DATA_MASK_APPCACHE |
|
| StoragePartition::REMOVE_DATA_MASK_FILE_SYSTEMS |
|
| StoragePartition::REMOVE_DATA_MASK_INDEXEDDB |
|
| @@ -294,7 +298,7 @@ void ClearCookies(content::StoragePartition* partition,
|
| delete_begin, delete_end, run_loop->QuitClosure());
|
| }
|
|
|
| -void ClearStuff(uint32 remove_mask,
|
| +void ClearStuff(uint32_t remove_mask,
|
| content::StoragePartition* partition,
|
| const base::Time delete_begin,
|
| const base::Time delete_end,
|
|
|