blob: 8e3824d84b9cff637e666bae9fb714da887899eb (
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
|
// Copyright (c) 2011 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_CPP_URL_RESPONSE_INFO_H_
#define PPAPI_CPP_URL_RESPONSE_INFO_H_
#include "ppapi/c/ppb_url_response_info.h"
#include "ppapi/cpp/resource.h"
#include "ppapi/cpp/var.h"
namespace pp {
class FileRef;
class URLResponseInfo : public Resource {
public:
// Creates an is_null() URLResponseInfo object.
URLResponseInfo() {}
// This constructor is used when we've gotten a PP_Resource as a return value
// that has already been addref'ed for us.
struct PassRef {};
URLResponseInfo(PassRef, PP_Resource resource);
URLResponseInfo(const URLResponseInfo& other);
// PPB_URLResponseInfo methods:
Var GetProperty(PP_URLResponseProperty property) const;
FileRef GetBodyAsFileRef() const;
// Convenient helpers for getting properties:
Var GetURL() const {
return GetProperty(PP_URLRESPONSEPROPERTY_URL);
}
Var GetRedirectURL() const {
return GetProperty(PP_URLRESPONSEPROPERTY_REDIRECTURL);
}
Var GetRedirectMethod() const {
return GetProperty(PP_URLRESPONSEPROPERTY_REDIRECTMETHOD);
}
int32_t GetStatusCode() const {
return GetProperty(PP_URLRESPONSEPROPERTY_STATUSCODE).AsInt();
}
Var GetStatusLine() const {
return GetProperty(PP_URLRESPONSEPROPERTY_STATUSLINE);
}
Var GetHeaders() const {
return GetProperty(PP_URLRESPONSEPROPERTY_HEADERS);
}
};
} // namespace pp
#endif // PPAPI_CPP_URL_RESPONSE_INFO_H_
|