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

Unified Diff: pdf/preview_mode_client.h

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/pdfium/pdfium_page.cc ('k') | pdf/preview_mode_client.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pdf/preview_mode_client.h
diff --git a/pdf/preview_mode_client.h b/pdf/preview_mode_client.h
index a6e646794b3650df1b6d9a0c52767b4e7cef46cf..1f424a76bf442323d0b60c95593f929a75f47fe6 100644
--- a/pdf/preview_mode_client.h
+++ b/pdf/preview_mode_client.h
@@ -5,6 +5,8 @@
#ifndef PDF_PREVIEW_MODE_CLIENT_H_
#define PDF_PREVIEW_MODE_CLIENT_H_
+#include <stdint.h>
+
#include <string>
#include <vector>
@@ -64,10 +66,10 @@ class PreviewModeClient : public PDFEngine::Client {
virtual void DocumentLoadFailed();
virtual pp::Instance* GetPluginInstance();
virtual void DocumentHasUnsupportedFeature(const std::string& feature);
- virtual void DocumentLoadProgress(uint32 available, uint32 doc_size);
+ virtual void DocumentLoadProgress(uint32_t available, uint32_t doc_size);
virtual void FormTextFieldFocusChange(bool in_focus);
virtual bool IsPrintPreview();
- virtual uint32 GetBackgroundColor();
+ virtual uint32_t GetBackgroundColor();
private:
Client* client_;
« no previous file with comments | « pdf/pdfium/pdfium_page.cc ('k') | pdf/preview_mode_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698