diff options
Diffstat (limited to 'printing/printed_document.h')
-rw-r--r-- | printing/printed_document.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/printing/printed_document.h b/printing/printed_document.h index 6e20d33..c7d806c 100644 --- a/printing/printed_document.h +++ b/printing/printed_document.h @@ -39,7 +39,6 @@ class PrintedDocument : public base::RefCountedThreadSafe<PrintedDocument> { PrintedDocument(const PrintSettings& settings, PrintedPagesSource* source, int cookie); - ~PrintedDocument(); // Sets a page's data. 0-based. Takes metafile ownership. // Note: locks for a short amount of time. @@ -106,6 +105,10 @@ class PrintedDocument : public base::RefCountedThreadSafe<PrintedDocument> { static const std::wstring& debug_dump_path(); private: + friend class base::RefCountedThreadSafe<PrintedDocument>; + + ~PrintedDocument(); + // Array of data for each print previewed page. typedef std::map<int, scoped_refptr<PrintedPage> > PrintedPages; |