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

Unified Diff: pdf/preview_mode_client.cc

Issue 1533413002: Switch to standard integer types in pdf/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix 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 | « pdf/preview_mode_client.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/preview_mode_client.cc
diff --git a/pdf/preview_mode_client.cc b/pdf/preview_mode_client.cc
index 5000089bb88530d0fef1c49592968d7bea8a9ce6..7c74dabb9cd9802ac580080790d54ef502f5d260 100644
--- a/pdf/preview_mode_client.cc
+++ b/pdf/preview_mode_client.cc
@@ -4,6 +4,8 @@
#include "pdf/preview_mode_client.h"
+#include <stdint.h>
+
#include "base/logging.h"
namespace chrome_pdf {
@@ -145,9 +147,8 @@ void PreviewModeClient::DocumentHasUnsupportedFeature(
NOTREACHED();
}
-void PreviewModeClient::DocumentLoadProgress(uint32 available,
- uint32 doc_size) {
-}
+void PreviewModeClient::DocumentLoadProgress(uint32_t available,
+ uint32_t doc_size) {}
void PreviewModeClient::FormTextFieldFocusChange(bool in_focus) {
NOTREACHED();
@@ -158,7 +159,7 @@ bool PreviewModeClient::IsPrintPreview() {
return false;
}
-uint32 PreviewModeClient::GetBackgroundColor() {
+uint32_t PreviewModeClient::GetBackgroundColor() {
NOTREACHED();
return 0;
}
« no previous file with comments | « pdf/preview_mode_client.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698