diff options
author | dpapad@chromium.org <dpapad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-19 01:04:57 +0000 |
---|---|---|
committer | dpapad@chromium.org <dpapad@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-19 01:04:57 +0000 |
commit | cdd19f53d9ffe332e0324a69bffb3c4e9369e980 (patch) | |
tree | 5cddec581bbbd376d683ac717516029a96a6b85e /chrome/utility | |
parent | f9722575da516bc5b88e5cbfb57b7c2782260429 (diff) | |
download | chromium_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/utility')
-rw-r--r-- | chrome/utility/utility_thread.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/utility/utility_thread.cc b/chrome/utility/utility_thread.cc index 5628860..cca4b34 100644 --- a/chrome/utility/utility_thread.cc +++ b/chrome/utility/utility_thread.cc @@ -260,7 +260,7 @@ bool UtilityThread::RenderPDFToWinMetafile( return false; scoped_ptr<printing::NativeMetafile> metafile( - printing::NativeMetafileFactory::CreateMetafile()); + printing::NativeMetafileFactory::Create()); metafile->CreateFileBackedDc(NULL, NULL, metafile_path); // Since we created the metafile using the screen DPI (but we actually want // the PDF DLL to print using the passed in render_dpi, we apply the following @@ -291,7 +291,7 @@ bool UtilityThread::RenderPDFToWinMetafile( metafile->FinishPage(); } } - metafile->Close(); + metafile->FinishDocument(); return ret; } #endif // defined(OS_WIN) |