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

Unified Diff: content/test/dwrite_font_fake_sender_win.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/content_test_suite.cc ('k') | content/test/fake_compositor_dependencies.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/test/dwrite_font_fake_sender_win.h
diff --git a/content/test/dwrite_font_fake_sender_win.h b/content/test/dwrite_font_fake_sender_win.h
index d6f438a38718a360dd6267a56850fc0a07b08f9e..8edd714564c54b1a10bdb4d60ce6fe8c4909ca08 100644
--- a/content/test/dwrite_font_fake_sender_win.h
+++ b/content/test/dwrite_font_fake_sender_win.h
@@ -5,6 +5,8 @@
#ifndef CONTENT_TEST_DWRITE_FONT_FAKE_SENDER_WIN_H_
#define CONTENT_TEST_DWRITE_FONT_FAKE_SENDER_WIN_H_
+#include <stddef.h>
+#include <stdint.h>
#include <wrl.h>
#include <utility>
@@ -106,7 +108,7 @@ class FakeFontCollection : public base::RefCounted<FakeFontCollection> {
void OnGetFamilyNames(
uint32_t family_index,
std::vector<std::pair<base::string16, base::string16>>* family_names);
- void OnGetFontFiles(uint32 family_index,
+ void OnGetFontFiles(uint32_t family_index,
std::vector<base::string16>* file_paths_);
private:
@@ -140,7 +142,7 @@ class FakeFontCollection : public base::RefCounted<FakeFontCollection> {
uint32_t family_index,
std::vector<std::pair<base::string16, base::string16>>* family_names);
- void OnGetFontFiles(uint32 family_index,
+ void OnGetFontFiles(uint32_t family_index,
std::vector<base::string16>* file_paths);
std::unique_ptr<ReplySender> GetReplySender();
« no previous file with comments | « content/test/content_test_suite.cc ('k') | content/test/fake_compositor_dependencies.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698