chromium/printing/backend/printing_restrictions.cc

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "printing/backend/printing_restrictions.h"

#include "build/build_config.h"

namespace printing {

#if BUILDFLAG(IS_CHROMEOS)
const char kAllowedColorModes[] = "allowedColorModes";
const char kAllowedDuplexModes[] = "allowedDuplexModes";
const char kAllowedPinModes[] = "allowedPinModes";
const char kDefaultColorMode[] = "defaultColorMode";
const char kDefaultDuplexMode[] = "defaultDuplexMode";
const char kDefaultPinMode[] = "defaultPinMode";
#endif  // BUILDFLAG(IS_CHROMEOS)

const char kPaperSizeName[] =;
const char kPaperSizeNameCustomOption[] =;
const char kPaperSizeCustomSize[] =;
const char kPaperSizeWidth[] =;
const char kPaperSizeHeight[] =;

}  // namespace printing