// Copyright 2018 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/backend/printing_restrictions.h" namespace printing { #if defined(OS_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 // defined(OS_CHROMEOS) const char kPaperSizeName[] = "name"; const char kPaperSizeNameCustomOption[] = "custom"; const char kPaperSizeCustomSize[] = "custom_size"; const char kPaperSizeWidth[] = "width"; const char kPaperSizeHeight[] = "height"; } // namespace printing