Chromium Code Reviews

Unified Diff: printing/pdf_metafile_mac.h

Issue 3855001: Move scoped_cftyperef from base to base/mac, use the new namespace, and name ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
« no previous file with comments | « printing/image.cc ('k') | printing/pdf_metafile_mac.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: printing/pdf_metafile_mac.h
===================================================================
--- printing/pdf_metafile_mac.h (revision 62861)
+++ printing/pdf_metafile_mac.h (working copy)
@@ -9,7 +9,7 @@
#include <CoreFoundation/CoreFoundation.h>
#include "base/basictypes.h"
-#include "base/scoped_cftyperef.h"
+#include "base/mac/scoped_cftyperef.h"
namespace gfx {
class Rect;
@@ -90,13 +90,13 @@
CGPDFDocumentRef GetPDFDocument() const;
// Context for rendering to the pdf.
- scoped_cftyperef<CGContextRef> context_;
+ base::mac::ScopedCFTypeRef<CGContextRef> context_;
// PDF backing store.
- scoped_cftyperef<CFMutableDataRef> pdf_data_;
+ base::mac::ScopedCFTypeRef<CFMutableDataRef> pdf_data_;
// Lazily-created CGPDFDocument representation of pdf_data_.
- mutable scoped_cftyperef<CGPDFDocumentRef> pdf_doc_;
+ mutable base::mac::ScopedCFTypeRef<CGPDFDocumentRef> pdf_doc_;
// Whether or not a page is currently open.
bool page_is_open_;
« no previous file with comments | « printing/image.cc ('k') | printing/pdf_metafile_mac.cc » ('j') | no next file with comments »

Powered by Google App Engine