blob: f57fdb8a4b3d05b4b74ebf22e519ec1ef9e60cc7 (
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
|
// Copyright 2014 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 EXTENSIONS_BROWSER_API_DNS_MOCK_HOST_RESOLVER_CREATOR_H_
#define EXTENSIONS_BROWSER_API_DNS_MOCK_HOST_RESOLVER_CREATOR_H_
#include <string>
#include "base/memory/ref_counted.h"
#include "base/synchronization/waitable_event.h"
namespace net {
class HostResolver;
class MockHostResolver;
}
namespace extensions {
// Used only for testing. Creates a MockHostResolver, respecting threading
// constraints.
class MockHostResolverCreator
: public base::RefCountedThreadSafe<MockHostResolverCreator> {
public:
static const std::string kHostname;
static const std::string kAddress;
MockHostResolverCreator();
net::HostResolver* CreateMockHostResolver();
void DeleteMockHostResolver();
private:
friend class base::RefCountedThreadSafe<MockHostResolverCreator>;
virtual ~MockHostResolverCreator();
void CreateMockHostResolverOnIOThread();
void DeleteMockHostResolverOnIOThread();
base::WaitableEvent resolver_event_;
// The MockHostResolver asserts that it's used on the same thread on which
// it's created, which is actually a stronger rule than its real counterpart.
// But that's fine; it's good practice.
//
// Plain pointer because we have to manage lifetime manually.
net::MockHostResolver* mock_host_resolver_;
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_API_DNS_MOCK_HOST_RESOLVER_CREATOR_H_
|