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

Unified Diff: printing/pdf_metafile_skia.cc

Issue 2400873002: keep only one typedef for the native drawing context (Closed)
Patch Set: native_drawing_context.h Created 4 years, 2 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 | « printing/pdf_metafile_skia.h ('k') | printing/printed_document.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/pdf_metafile_skia.cc
diff --git a/printing/pdf_metafile_skia.cc b/printing/pdf_metafile_skia.cc
index df96d376271be97bceca1b71f52c984c069ec228..8725e2b81ad7bbdbfe07925de4925f3458d80e19 100644
--- a/printing/pdf_metafile_skia.cc
+++ b/printing/pdf_metafile_skia.cc
@@ -228,20 +228,20 @@ unsigned int PdfMetafileSkia::GetPageCount() const {
return base::checked_cast<unsigned int>(data_->pages_.size());
}
-gfx::NativeDrawingContext PdfMetafileSkia::context() const {
+skia::NativeDrawingContext PdfMetafileSkia::context() const {
NOTREACHED();
return nullptr;
}
#if defined(OS_WIN)
-bool PdfMetafileSkia::Playback(gfx::NativeDrawingContext hdc,
+bool PdfMetafileSkia::Playback(skia::NativeDrawingContext hdc,
const RECT* rect) const {
NOTREACHED();
return false;
}
-bool PdfMetafileSkia::SafePlayback(gfx::NativeDrawingContext hdc) const {
+bool PdfMetafileSkia::SafePlayback(skia::NativeDrawingContext hdc) const {
NOTREACHED();
return false;
}
« no previous file with comments | « printing/pdf_metafile_skia.h ('k') | printing/printed_document.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698