blob: 01b898f3514fd9216491c7703e045036e28de8b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// Copyright 2019 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_IPP_L10N_H_
#define COMPONENTS_PRINTING_BROWSER_IPP_L10N_H_
#include <map>
#include "base/strings/string_piece.h"
const std::map<base::StringPiece, int>& CapabilityLocalizationMap();
#endif // COMPONENTS_PRINTING_BROWSER_IPP_L10N_H_
|