// Copyright 2017 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_PRINTING_PRINTING_INIT_H_ #define CHROME_BROWSER_PRINTING_PRINTING_INIT_H_ namespace content { class WebContents; } namespace printing { // Initialize printing related classes for a WebContents. void InitializePrintingForWebContents(content::WebContents* web_contents); } // namespace printing #endif // CHROME_BROWSER_PRINTING_PRINTING_INIT_H_