blob: c0a63db6dcedc2d8911a99ce6cd861de392908c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Copyright (c) 2012 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.
#ifndef PRINTING_BACKEND_PRINT_BACKEND_CONSTS_H_
#define PRINTING_BACKEND_PRINT_BACKEND_CONSTS_H_
#pragma once
#include "printing/printing_export.h"
PRINTING_EXPORT extern const char kLocationTagName[];
PRINTING_EXPORT extern const char kDriverNameTagName[];
PRINTING_EXPORT extern const char kDriverInfoTagName[];
PRINTING_EXPORT extern const char kCUPSPrintServerURL[];
PRINTING_EXPORT extern const char kCUPSBlocking[];
PRINTING_EXPORT extern const char kCUPSEncryption[];
PRINTING_EXPORT extern const char kValueTrue[];
PRINTING_EXPORT extern const char kValueFalse[];
#endif // PRINTING_BACKEND_PRINT_BACKEND_CONSTS_H_
|