blob: bd27814465ade64341db22f803ea5649b0ec6321 [file] [log] [blame]
// Copyright 2015 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_PRINT_MANAGER_UTILS_H_
#define COMPONENTS_PRINTING_BROWSER_PRINT_MANAGER_UTILS_H_
#include <string>
struct PrintMsg_Print_Params;
namespace content {
class WebContents;
}
namespace printing {
class PrintSettings;
bool IsOopifEnabled();
// Check on the current feature settings to decide whether we need to
// create a PDF compositor client for this |web_contents|.
void CreateCompositeClientIfNeeded(content::WebContents* web_contents,
const std::string& user_agent);
// Converts given settings to Print_Params and stores them in the output
// parameter |params|.
void RenderParamsFromPrintSettings(const PrintSettings& settings,
PrintMsg_Print_Params* params);
} // namespace printing
#endif // COMPONENTS_PRINTING_BROWSER_PRINT_MANAGER_UTILS_H_