blob: 8ece647fa585bd1957d8b9faf8edc5d15ebd1642 (
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
|
// 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 NET_PROXY_NETWORK_DELEGATE_ERROR_OBSERVER_H_
#define NET_PROXY_NETWORK_DELEGATE_ERROR_OBSERVER_H_
#pragma once
#include "base/memory/ref_counted.h"
#include "net/proxy/proxy_resolver_error_observer.h"
namespace base {
class MessageLoopProxy;
}
namespace net {
class NetworkDelegate;
// An implementation of ProxyResolverErrorObserver that forwards PAC script
// errors to a NetworkDelegate object on the thread it lives on.
class NetworkDelegateErrorObserver : public ProxyResolverErrorObserver {
public:
NetworkDelegateErrorObserver(NetworkDelegate* network_delegate,
base::MessageLoopProxy* origin_loop);
virtual ~NetworkDelegateErrorObserver();
// ProxyResolverErrorObserver implementation.
virtual void OnPACScriptError(int line_number, const string16& error);
private:
class Core;
scoped_refptr<Core> core_;
DISALLOW_COPY_AND_ASSIGN(NetworkDelegateErrorObserver);
};
} // namespace net
#endif // NET_PROXY_NETWORK_DELEGATE_ERROR_OBSERVER_H_
|