summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/ppb_url_loader_proxy.h
blob: cd767b0fc300db6b806a7aa719f9bfb10db2f2e0 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
// Copyright (c) 2010 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 PPAPI_PPB_URL_LOADER_PROXY_H_
#define PPAPI_PPB_URL_LOADER_PROXY_H_

#include "base/weak_ptr.h"
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_size.h"
#include "ppapi/c/pp_var.h"
#include "ppapi/proxy/interface_proxy.h"

struct PPB_URLLoader;

namespace pp {
namespace proxy {

class PPB_URLLoader_Proxy : public InterfaceProxy,
                            public base::SupportsWeakPtr<PPB_URLLoader_Proxy> {
 public:
  PPB_URLLoader_Proxy(Dispatcher* dispatcher, const void* target_interface);
  virtual ~PPB_URLLoader_Proxy();

  // URLLoader objects are normally allocated by the Create function, but
  // they are also provided to PPP_Instance.OnMsgHandleDocumentLoad. This
  // function allows the proxy for DocumentLoad to create the correct plugin
  // proxied info for the given browser-supplied URLLoader resource ID.
  static void TrackPluginResource(PP_Resource url_loader_resource);

  const PPB_URLLoader* ppb_url_loader_target() const {
    return reinterpret_cast<const PPB_URLLoader*>(target_interface());
  }

  // InterfaceProxy implementation.
  virtual const void* GetSourceInterface() const;
  virtual InterfaceID GetInterfaceId() const;
  virtual void OnMessageReceived(const IPC::Message& msg);

 private:
  // Plugin->renderer message handlers.
  void OnMsgCreate(PP_Instance instance,
                   PP_Resource* result);
  void OnMsgOpen(PP_Resource loader,
                 PP_Resource request_info,
                 uint32_t serialized_callback);
  void OnMsgFollowRedirect(PP_Resource loader,
                           uint32_t serialized_callback);
  void OnMsgGetResponseInfo(PP_Resource loader,
                            PP_Resource* result);
  void OnMsgReadResponseBody(PP_Resource loader,
                             int32_t bytes_to_read);
  void OnMsgFinishStreamingToFile(PP_Resource loader,
                                  uint32_t serialized_callback);
  void OnMsgClose(PP_Resource loader);

  // Renderer->plugin message handlers.
  void OnMsgUpdateProgress(PP_Resource resource,
                           int64_t bytes_sent,
                           int64_t total_bytes_to_be_sent,
                           int64_t bytes_received,
                           int64_t total_bytes_to_be_received);
  void OnMsgReadResponseBodyAck(PP_Resource pp_resource,
                                int32_t result,
                                const std::string& data);
};

}  // namespace proxy
}  // namespace pp

#endif  // PPAPI_PPB_URL_LOADER_PROXY_H_