blob: 0cab35e5b20de0ce1c47bbed100450cab42a2bc2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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_
#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_
|