summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/print_web_view_helper_linux.cc
diff options
context:
space:
mode:
authordpapad@chromium.org <dpapad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-19 01:04:57 +0000
committerdpapad@chromium.org <dpapad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-19 01:04:57 +0000
commitcdd19f53d9ffe332e0324a69bffb3c4e9369e980 (patch)
tree5cddec581bbbd376d683ac717516029a96a6b85e /chrome/renderer/print_web_view_helper_linux.cc
parentf9722575da516bc5b88e5cbfb57b7c2782260429 (diff)
downloadchromium_src-cdd19f53d9ffe332e0324a69bffb3c4e9369e980.zip
chromium_src-cdd19f53d9ffe332e0324a69bffb3c4e9369e980.tar.gz
chromium_src-cdd19f53d9ffe332e0324a69bffb3c4e9369e980.tar.bz2
Renaming NativeMetafile related methods to more appropriate names.
1) Renaming Close() to FinishDocument() 2) Renaming NativeMetafileFactory::CreateMetafile() to Create(), since the name of the class already implies what is being created BUG=NONE TEST=NONE Review URL: http://codereview.chromium.org/6674037 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@78788 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/print_web_view_helper_linux.cc')
-rw-r--r--chrome/renderer/print_web_view_helper_linux.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/renderer/print_web_view_helper_linux.cc b/chrome/renderer/print_web_view_helper_linux.cc
index d9015d6..970b47c 100644
--- a/chrome/renderer/print_web_view_helper_linux.cc
+++ b/chrome/renderer/print_web_view_helper_linux.cc
@@ -28,7 +28,7 @@ void PrintWebViewHelper::CreatePreviewDocument(
// We only can use PDF in the renderer because Cairo needs to create a
// temporary file for a PostScript surface.
scoped_ptr<printing::NativeMetafile> metafile(
- printing::NativeMetafileFactory::CreateMetafile());
+ printing::NativeMetafileFactory::Create());
int page_count = 0;
if (!RenderPages(params, frame, node, false, &page_count, metafile.get()))
@@ -57,7 +57,7 @@ void PrintWebViewHelper::PrintPages(const ViewMsg_PrintPages_Params& params,
// We only can use PDF in the renderer because Cairo needs to create a
// temporary file for a PostScript surface.
scoped_ptr<printing::NativeMetafile> metafile(
- printing::NativeMetafileFactory::CreateMetafile());
+ printing::NativeMetafileFactory::Create());
int page_count = 0;
bool send_expected_page_count =
#if defined(OS_CHROMEOS)
@@ -189,7 +189,7 @@ bool PrintWebViewHelper::RenderPages(const ViewMsg_PrintPages_Params& params,
}
}
- metafile->Close();
+ metafile->FinishDocument();
return true;
}