| Index: content/browser/download/download_item_impl_unittest.cc
|
| diff --git a/content/browser/download/download_item_impl_unittest.cc b/content/browser/download/download_item_impl_unittest.cc
|
| index 9ba2d1777ec8f60544a0afb20856d0b1ca56264f..742024c98de5326a572afcb025c015329836eec3 100644
|
| --- a/content/browser/download/download_item_impl_unittest.cc
|
| +++ b/content/browser/download/download_item_impl_unittest.cc
|
| @@ -2,6 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stdint.h>
|
| +
|
| #include "base/callback.h"
|
| #include "base/feature_list.h"
|
| #include "base/message_loop/message_loop.h"
|
| @@ -54,12 +56,12 @@ class MockDelegate : public DownloadItemImplDelegate {
|
| MOCK_METHOD1(ShouldOpenFileBasedOnExtension, bool(const base::FilePath&));
|
| MOCK_METHOD1(CheckForFileRemoval, void(DownloadItemImpl*));
|
|
|
| - void ResumeInterruptedDownload(
|
| - scoped_ptr<DownloadUrlParameters> params, uint32 id) override {
|
| + void ResumeInterruptedDownload(scoped_ptr<DownloadUrlParameters> params,
|
| + uint32_t id) override {
|
| MockResumeInterruptedDownload(params.get(), id);
|
| }
|
| MOCK_METHOD2(MockResumeInterruptedDownload,
|
| - void(DownloadUrlParameters* params, uint32 id));
|
| + void(DownloadUrlParameters* params, uint32_t id));
|
|
|
| MOCK_CONST_METHOD0(GetBrowserContext, BrowserContext*());
|
| MOCK_METHOD1(UpdatePersistence, void(DownloadItemImpl*));
|
|
|