blob: 5daa9e5ae21f9524f63d8cd81f1f050bc13935b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// 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 IOS_NET_CLIENTS_CRN_FORWARDING_NETWORK_CLIENT_H_
#define IOS_NET_CLIENTS_CRN_FORWARDING_NETWORK_CLIENT_H_
#import <Foundation/Foundation.h>
#include "base/memory/weak_ptr.h"
#import "ios/net/clients/crn_network_client_protocol.h"
// Basic CRNNetworkClientProtocol that forwards all the calls to the underlying
// client. Suitable for injecting via RequestTracker.
@interface CRNForwardingNetworkClient : NSObject<CRNNetworkClientProtocol>
@property(nonatomic, assign) id<CRNNetworkClientProtocol> underlyingClient;
@end
#endif // IOS_NET_CLIENTS_CRN_FORWARDING_NETWORK_CLIENT_H_
|