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

Unified Diff: printing/emf_win.h

Issue 1343593002: Cleanup code in printing/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months 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 | « no previous file | printing/emf_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/emf_win.h
diff --git a/printing/emf_win.h b/printing/emf_win.h
index dcdfd8c99a46fac5e8a55d5ceacbca9884779649..359d4b3e2e0c1900d65280053f97f890911ee777 100644
--- a/printing/emf_win.h
+++ b/printing/emf_win.h
@@ -56,7 +56,7 @@ class PRINTING_EXPORT Emf : public Metafile {
// Metafile methods.
bool Init() override;
bool InitFromData(const void* src_buffer,
- uint32 src_buffer_size) override;
+ uint32_t src_buffer_size) override;
// Inserts a custom GDICOMMENT records indicating StartPage/EndPage calls
// (since StartPage and EndPage do not work in a metafile DC). Only valid
@@ -68,8 +68,8 @@ class PRINTING_EXPORT Emf : public Metafile {
bool FinishPage() override;
bool FinishDocument() override;
- uint32 GetDataSize() const override;
- bool GetData(void* buffer, uint32 size) const override;
+ uint32_t GetDataSize() const override;
+ bool GetData(void* buffer, uint32_t size) const override;
// Should be passed to Playback to keep the exact same size.
gfx::Rect GetPageBounds(unsigned int page_number) const override;
« no previous file with comments | « no previous file | printing/emf_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698