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

Unified Diff: content/browser/download/mhtml_generation_browsertest.cc

Issue 1549113002: Switch to standard integer types in content/browser/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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: content/browser/download/mhtml_generation_browsertest.cc
diff --git a/content/browser/download/mhtml_generation_browsertest.cc b/content/browser/download/mhtml_generation_browsertest.cc
index f2ebfd87a9d275c58a6087062291758e37865a28..7a3b00fe319fdbde3899a37e2c2b32e0f5d09c2a 100644
--- a/content/browser/download/mhtml_generation_browsertest.cc
+++ b/content/browser/download/mhtml_generation_browsertest.cc
@@ -2,11 +2,14 @@
// 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/bind.h"
#include "base/callback.h"
#include "base/files/file_path.h"
#include "base/files/file_util.h"
#include "base/files/scoped_temp_dir.h"
+#include "base/macros.h"
#include "base/run_loop.h"
#include "content/public/browser/web_contents.h"
#include "content/public/test/browser_test_utils.h"
@@ -50,19 +53,19 @@ class MHTMLGenerationTest : public ContentBrowserTest {
}
bool has_mhtml_callback_run() const { return has_mhtml_callback_run_; }
- int64 file_size() const { return file_size_; }
+ int64_t file_size() const { return file_size_; }
base::ScopedTempDir temp_dir_;
private:
- void MHTMLGenerated(base::Closure quit_closure, int64 size) {
+ void MHTMLGenerated(base::Closure quit_closure, int64_t size) {
has_mhtml_callback_run_ = true;
file_size_ = size;
quit_closure.Run();
}
bool has_mhtml_callback_run_;
- int64 file_size_;
+ int64_t file_size_;
};
// Tests that generating a MHTML does create contents.
@@ -78,7 +81,7 @@ IN_PROC_BROWSER_TEST_F(MHTMLGenerationTest, GenerateMHTML) {
// Make sure the actual generated file has some contents.
EXPECT_GT(file_size(), 0); // Verify the size reported by the callback.
- int64 file_size;
+ int64_t file_size;
ASSERT_TRUE(base::GetFileSize(path, &file_size));
EXPECT_GT(file_size, 100); // Verify the actual file size.
}
« no previous file with comments | « content/browser/download/file_metadata_unittest_linux.cc ('k') | content/browser/download/mhtml_generation_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698