Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / content / browser / renderer_host / pepper / pepper_printing_host.cc
1 // Copyright (c) 2012 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 #include "content/browser/renderer_host/pepper/pepper_printing_host.h"
6
7 #include "ppapi/c/dev/pp_print_settings_dev.h"
8 #include "ppapi/c/pp_errors.h"
9 #include "ppapi/host/dispatch_host_message.h"
10 #include "ppapi/host/host_message_context.h"
11 #include "ppapi/host/ppapi_host.h"
12 #include "ppapi/proxy/ppapi_messages.h"
13
14 namespace content {
15
16 PepperPrintingHost::PepperPrintingHost(
17     ppapi::host::PpapiHost* host,
18     PP_Instance instance,
19     PP_Resource resource,
20     scoped_ptr<PepperPrintSettingsManager> print_settings_manager)
21     : ResourceHost(host, instance, resource),
22       print_settings_manager_(print_settings_manager.Pass()),
23       weak_factory_(this) {}
24
25 PepperPrintingHost::~PepperPrintingHost() {}
26
27 int32_t PepperPrintingHost::OnResourceMessageReceived(
28     const IPC::Message& msg,
29     ppapi::host::HostMessageContext* context) {
30   IPC_BEGIN_MESSAGE_MAP(PepperPrintingHost, msg)
31   PPAPI_DISPATCH_HOST_RESOURCE_CALL_0(
32       PpapiHostMsg_Printing_GetDefaultPrintSettings, OnGetDefaultPrintSettings)
33   IPC_END_MESSAGE_MAP()
34   return PP_ERROR_FAILED;
35 }
36
37 int32_t PepperPrintingHost::OnGetDefaultPrintSettings(
38     ppapi::host::HostMessageContext* context) {
39   print_settings_manager_->GetDefaultPrintSettings(
40       base::Bind(&PepperPrintingHost::PrintSettingsCallback,
41                  weak_factory_.GetWeakPtr(),
42                  context->MakeReplyMessageContext()));
43   return PP_OK_COMPLETIONPENDING;
44 }
45
46 void PepperPrintingHost::PrintSettingsCallback(
47     ppapi::host::ReplyMessageContext reply_context,
48     PepperPrintSettingsManager::Result result) {
49   reply_context.params.set_result(result.second);
50   host()->SendReply(
51       reply_context,
52       PpapiPluginMsg_Printing_GetDefaultPrintSettingsReply(result.first));
53 }
54
55 }  // namespace content