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

Unified Diff: win8/metro_driver/print_document_source.h

Issue 1540973003: Switch to standard integer types in win8/. (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 | « win8/metro_driver/metro_driver_win7.cc ('k') | win8/metro_driver/print_document_source.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: win8/metro_driver/print_document_source.h
diff --git a/win8/metro_driver/print_document_source.h b/win8/metro_driver/print_document_source.h
index fbd3c1794d1161fb189904c3767abb08626d196d..8f3d53b37a6fac14b0f95ffd427a19111021abe5 100644
--- a/win8/metro_driver/print_document_source.h
+++ b/win8/metro_driver/print_document_source.h
@@ -7,11 +7,12 @@
#include <documentsource.h>
#include <printpreview.h>
+#include <stddef.h>
+#include <stdint.h>
#include <windows.graphics.printing.h>
#include <vector>
-#include "base/basictypes.h"
#include "base/memory/ref_counted.h"
#include "base/memory/scoped_vector.h"
#include "base/synchronization/condition_variable.h"
@@ -87,8 +88,8 @@ class PrintDocumentSource
IPrintDocumentPackageTarget* package_target);
// classic COM interface IPrintPreviewPageCollection methods
- STDMETHOD(Paginate)(uint32 page, IInspectable* options);
- STDMETHOD(MakePage)(uint32 desired_page, float width, float height);
+ STDMETHOD(Paginate)(uint32_t page, IInspectable* options);
+ STDMETHOD(MakePage)(uint32_t desired_page, float width, float height);
// If the screen DPI changes, we must be warned here.
void ResetDpi(float dpi);
« no previous file with comments | « win8/metro_driver/metro_driver_win7.cc ('k') | win8/metro_driver/print_document_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698