blob: ae4648fd6cb94248c3a524b7ce72d4dd7689dfbd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
// 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 ANDROID_WEBVIEW_BROWSER_PRINT_MANAGER_H_
#define ANDROID_WEBVIEW_BROWSER_PRINT_MANAGER_H_
#include "components/printing/browser/print_manager.h"
#include "content/public/browser/web_contents_user_data.h"
#include "printing/print_settings.h"
namespace android_webview {
class AwPrintManager : public printing::PrintManager,
public content::WebContentsUserData<AwPrintManager> {
public:
// Creates a AwPrintManager for the provided webcontents. If the
// AwPrintManager already exists, it is destroyed and a new one is created.
static AwPrintManager* CreateForWebContents(
content::WebContents* contents,
const printing::PrintSettings& settings,
const base::FileDescriptor& file_descriptor,
const PdfWritingDoneCallback& callback);
~AwPrintManager() override;
bool PrintNow();
private:
friend class content::WebContentsUserData<AwPrintManager>;
AwPrintManager(content::WebContents* contents,
const printing::PrintSettings& settings,
const base::FileDescriptor& file_descriptor,
const PdfWritingDoneCallback& callback);
bool OnMessageReceived(const IPC::Message& message) override;
void OnGetDefaultPrintSettings(IPC::Message* reply_msg);
printing::PrintSettings settings_;
DISALLOW_COPY_AND_ASSIGN(AwPrintManager);
};
} // namespace android_webview
#endif // ANDROID_WEBVIEW_BROWSER_PRINT_MANAGER_H_
|