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

Side by Side Diff: chrome/browser/devtools/devtools_network_transaction.h

Issue 1304143010: Plumbing SSLPrivateKey Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix rebase. Created 4 years, 10 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
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ 5 #ifndef CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_
6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ 6 #define CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 13 matching lines...) Expand all
24 24
25 namespace net { 25 namespace net {
26 class AuthCredentials; 26 class AuthCredentials;
27 class BoundNetLog; 27 class BoundNetLog;
28 class HttpRequestHeaders; 28 class HttpRequestHeaders;
29 struct HttpRequestInfo; 29 struct HttpRequestInfo;
30 class HttpResponseInfo; 30 class HttpResponseInfo;
31 class HttpNetworkSession; 31 class HttpNetworkSession;
32 class IOBuffer; 32 class IOBuffer;
33 struct LoadTimingInfo; 33 struct LoadTimingInfo;
34 class SSLPrivateKey;
34 class UploadProgress; 35 class UploadProgress;
35 class X509Certificate; 36 class X509Certificate;
36 } // namespace net 37 } // namespace net
37 38
38 namespace test { 39 namespace test {
39 class DevToolsNetworkControllerHelper; 40 class DevToolsNetworkControllerHelper;
40 } 41 }
41 42
42 // DevToolsNetworkTransaction is a wrapper for network transaction. All 43 // DevToolsNetworkTransaction is a wrapper for network transaction. All
43 // HttpTransaction methods are proxied to real transaction, but |callback| 44 // HttpTransaction methods are proxied to real transaction, but |callback|
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 128
128 const net::HttpRequestInfo* request_; 129 const net::HttpRequestInfo* request_;
129 130
130 // True if Fail was already invoked. 131 // True if Fail was already invoked.
131 bool failed_; 132 bool failed_;
132 133
133 DISALLOW_COPY_AND_ASSIGN(DevToolsNetworkTransaction); 134 DISALLOW_COPY_AND_ASSIGN(DevToolsNetworkTransaction);
134 }; 135 };
135 136
136 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_ 137 #endif // CHROME_BROWSER_DEVTOOLS_DEVTOOLS_NETWORK_TRANSACTION_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_content_browser_client.cc ('k') | chrome/browser/ssl/ssl_client_auth_observer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698