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

Unified Diff: content/test/image_decoder_test.h

Issue 1544273002: Switch to standard integer types in content/. (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
« no previous file with comments | « content/test/gpu_memory_buffer_impl_test_template.h ('k') | content/test/image_decoder_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/image_decoder_test.h
diff --git a/content/test/image_decoder_test.h b/content/test/image_decoder_test.h
index 9e2a8003723fe1cfe111cebcc8fb08d2b4b5aab3..9f59d537e8a748f1103f745de436e3179922e14a 100644
--- a/content/test/image_decoder_test.h
+++ b/content/test/image_decoder_test.h
@@ -5,12 +5,14 @@
#ifndef CONTENT_TEST_IMAGE_DECODER_TEST_H_
#define CONTENT_TEST_IMAGE_DECODER_TEST_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
-#include "base/basictypes.h"
#include "base/compiler_specific.h"
#include "base/files/file_path.h"
+#include "base/macros.h"
#include "testing/gtest/include/gtest/gtest.h"
@@ -61,7 +63,7 @@ class ImageDecoderTest : public testing::Test {
// files to test based on file size.
// If just the MD5 sum is wanted, this skips chunking.
void TestDecoding(ImageDecoderTestFileSelection file_selection,
- const int64 threshold);
+ const int64_t threshold);
void TestDecoding() {
TestDecoding(TEST_ALL, 0);
« no previous file with comments | « content/test/gpu_memory_buffer_impl_test_template.h ('k') | content/test/image_decoder_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698