blob: 8d113ef2e2bb0b27055002d80d92c08b1f51afbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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.
#ifndef COMPONENTS_PRINTING_BROWSER_FEATURES_H_
#define COMPONENTS_PRINTING_BROWSER_FEATURES_H_
#include "base/feature_list.h"
#include "build/build_config.h"
namespace printing {
namespace features {
#if defined(OS_MACOSX)
extern const base::Feature kEnableCustomMacPaperSizes;
#endif
} // namespace features
} // namespace printing
#endif // COMPONENTS_PRINTING_BROWSER_FEATURES_H_
|