blob: 592fd748320f535df080b23ed7d051cfb40068b5 (
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
|
// Copyright 2013 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_DEV_HOST_RESOLVER_DEV_H_
#define PPAPI_CPP_DEV_HOST_RESOLVER_DEV_H_
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/dev/ppb_host_resolver_dev.h"
#include "ppapi/cpp/dev/net_address_dev.h"
#include "ppapi/cpp/pass_ref.h"
#include "ppapi/cpp/resource.h"
#include "ppapi/cpp/var.h"
namespace pp {
class CompletionCallback;
class InstanceHandle;
class HostResolver_Dev : public Resource {
public:
HostResolver_Dev();
explicit HostResolver_Dev(const InstanceHandle& instance);
HostResolver_Dev(PassRef, PP_Resource resource);
HostResolver_Dev(const HostResolver_Dev& other);
virtual ~HostResolver_Dev();
HostResolver_Dev& operator=(const HostResolver_Dev& other);
// Returns true if the required interface is available.
static bool IsAvailable();
int32_t Resolve(const char* host,
uint16_t port,
const PP_HostResolver_Hint_Dev& hint,
const CompletionCallback& callback);
Var GetCanonicalName() const;
uint32_t GetNetAddressCount() const;
NetAddress_Dev GetNetAddress(uint32_t index) const;
};
} // namespace pp
#endif // PPAPI_CPP_DEV_HOST_RESOLVER_DEV_H_
|