1 // Copyright 2019 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #ifndef CHROME_BROWSER_CHROMEOS_EXTENSIONS_PRINTING_METRICS_PRINT_JOB_INFO_IDL_CONVERSIONS_H_
6 #define CHROME_BROWSER_CHROMEOS_EXTENSIONS_PRINTING_METRICS_PRINT_JOB_INFO_IDL_CONVERSIONS_H_
7 
8 #include "chrome/browser/chromeos/printing/history/print_job_info.pb.h"
9 #include "chrome/common/extensions/api/printing_metrics.h"
10 
11 namespace extensions {
12 
13 api::printing_metrics::PrintJobInfo PrintJobInfoProtoToIdl(
14     const chromeos::printing::proto::PrintJobInfo& print_job_info_proto);
15 
16 }  // namespace extensions
17 
18 #endif  // CHROME_BROWSER_CHROMEOS_EXTENSIONS_PRINTING_METRICS_PRINT_JOB_INFO_IDL_CONVERSIONS_H_
19