blob: 87bc30e7d0faad38c9c36665f794e053348cc3c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "printing/printed_document.h"
#include "base/logging.h"
#include "build/build_config.h"
#include "printing/printing_context_linux.h"
#if defined(OS_ANDROID) || defined(OS_CHROMEOS)
#error "This file is not used on Android / ChromeOS"
#endif
namespace printing {
bool PrintedDocument::RenderPrintedDocument(PrintingContext* context) {
DCHECK(context);
if (context->NewPage() != PrintingContext::OK)
return false;
{
base::AutoLock lock(lock_);
const MetafilePlayer* metafile = GetMetafile();
DCHECK(metafile);
static_cast<PrintingContextLinux*>(context)->PrintDocument(*metafile);
}
return context->PageDone() == PrintingContext::OK;
}
} // namespace printing
|