Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(382)

Side by Side Diff: components/cronet/ios/Cronet+TestSupport.h

Issue 2146643002: [Cronet] Integrate CrNet functionality into Cronet on iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Andrei's comments. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #import "components/cronet/ios/Cronet.h"
6
7 // Cronet test support category.
8 @interface Cronet (TestSupport)
9
10 // Sets Host Resolver Rules for testing.
11 // This method only has any effect before |start| is called.
12 + (void)setHostResolverRulesForTesting:(NSString*)hostResolverRulesForTesting;
13
14 // Sets a native MockCertVerifier for testing.
15 // This method only has any effect before |start| is called.
16 + (void)setMockCertVerifierForTesting:(void*)mockCertVerifierForTesting;
17
18 @end
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698