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

Unified Diff: chrome/browser/printing/print_job.h

Issue 2643163002: Refactor print_job.cc (Closed)
Patch Set: Fix constructor Created 3 years, 11 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 | chrome/browser/printing/print_job.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/printing/print_job.h
diff --git a/chrome/browser/printing/print_job.h b/chrome/browser/printing/print_job.h
index 4a7fb3873e58a21ff6f1712da5fe77f77e4bfc6f..0dfca6f93ad5f8cbb37a059758fd27d042e1dfaf 100644
--- a/chrome/browser/printing/print_job.h
+++ b/chrome/browser/printing/print_job.h
@@ -125,10 +125,10 @@ class PrintJob : public PrintJobWorkerOwner,
void HoldUntilStopIsCalled();
#if defined(OS_WIN)
- void OnPdfToEmfStarted(int page_count);
- void OnPdfToEmfPageConverted(int page_number,
- float scale_factor,
- std::unique_ptr<MetafilePlayer> emf);
+ void OnPdfConversionStarted(int page_count);
+ void OnPdfPageConverted(int page_number,
+ float scale_factor,
+ std::unique_ptr<MetafilePlayer> emf);
#endif // defined(OS_WIN)
content::NotificationRegistrar registrar_;
@@ -156,8 +156,8 @@ class PrintJob : public PrintJobWorkerOwner,
bool is_canceling_;
#if defined(OS_WIN)
- class PdfToEmfState;
- std::unique_ptr<PdfToEmfState> pdf_to_emf_state_;
+ class PdfConversionState;
+ std::unique_ptr<PdfConversionState> pdf_conversion_state_;
std::vector<int> pdf_page_mapping_;
#endif // defined(OS_WIN)
« no previous file with comments | « no previous file | chrome/browser/printing/print_job.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698