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

Unified Diff: chrome/browser/download/chrome_download_manager_delegate_unittest.cc

Issue 1542413002: Switch to standard integer types in chrome/browser/, part 1 of 4. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/download/chrome_download_manager_delegate_unittest.cc
diff --git a/chrome/browser/download/chrome_download_manager_delegate_unittest.cc b/chrome/browser/download/chrome_download_manager_delegate_unittest.cc
index 530915ac1e55da268566ab7490c9981921ec2478..adf95d7bc4959fb90a1e4f3c05dc7f01f2ad62ca 100644
--- a/chrome/browser/download/chrome_download_manager_delegate_unittest.cc
+++ b/chrome/browser/download/chrome_download_manager_delegate_unittest.cc
@@ -2,6 +2,9 @@
// 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_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
@@ -137,7 +140,7 @@ class ChromeDownloadManagerDelegateTest
void VerifyAndClearExpectations();
// Creates MockDownloadItem and sets up default expectations.
- content::MockDownloadItem* CreateActiveDownloadItem(int32 id);
+ content::MockDownloadItem* CreateActiveDownloadItem(int32_t id);
// Given the relative path |path|, returns the full path under the temporary
// downloads directory.
@@ -197,7 +200,7 @@ void ChromeDownloadManagerDelegateTest::VerifyAndClearExpectations() {
}
content::MockDownloadItem*
- ChromeDownloadManagerDelegateTest::CreateActiveDownloadItem(int32 id) {
+ChromeDownloadManagerDelegateTest::CreateActiveDownloadItem(int32_t id) {
content::MockDownloadItem* item =
new ::testing::NiceMock<content::MockDownloadItem>();
ON_CALL(*item, GetBrowserContext())
« no previous file with comments | « chrome/browser/download/chrome_download_manager_delegate.cc ('k') | chrome/browser/download/download_browsertest.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698