mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium version 84.0.4147.0 (#768962)
This commit is contained in:
committed by
Marshall Greenblatt
parent
640cd0f411
commit
790d248111
@@ -6,6 +6,8 @@
|
||||
|
||||
#include "base/logging.h"
|
||||
|
||||
#include "printing/mojom/print.mojom.h"
|
||||
|
||||
CefPrintSettingsImpl::CefPrintSettingsImpl(
|
||||
std::unique_ptr<printing::PrintSettings> settings,
|
||||
bool read_only)
|
||||
@@ -140,7 +142,8 @@ int CefPrintSettingsImpl::GetCopies() {
|
||||
|
||||
void CefPrintSettingsImpl::SetDuplexMode(DuplexMode mode) {
|
||||
CEF_VALUE_VERIFY_RETURN_VOID(true);
|
||||
mutable_value()->set_duplex_mode(static_cast<printing::DuplexMode>(mode));
|
||||
mutable_value()->set_duplex_mode(
|
||||
static_cast<printing::mojom::DuplexMode>(mode));
|
||||
}
|
||||
|
||||
CefPrintSettings::DuplexMode CefPrintSettingsImpl::GetDuplexMode() {
|
||||
|
Reference in New Issue
Block a user