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

Unified Diff: net/url_request/url_request_context.h

Issue 6730034: Remove all "net::" prefixes under net/url_request for code that's (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed indentation Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/url_request/url_request.cc ('k') | net/url_request/url_request_error_job.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/url_request/url_request_context.h
diff --git a/net/url_request/url_request_context.h b/net/url_request/url_request_context.h
index 63e069a1434bcaf0dfaea3160ff99eb411a64bf3..ef4a3570b4e39a7ac5247e6168a5cd8799130047 100644
--- a/net/url_request/url_request_context.h
+++ b/net/url_request/url_request_context.h
@@ -82,7 +82,7 @@ class URLRequestContext
DnsCertProvenanceChecker* dns_cert_checker() const {
return dns_cert_checker_;
}
- void set_dns_cert_checker(net::DnsCertProvenanceChecker* dns_cert_checker) {
+ void set_dns_cert_checker(DnsCertProvenanceChecker* dns_cert_checker) {
dns_cert_checker_ = dns_cert_checker;
}
@@ -94,7 +94,7 @@ class URLRequestContext
// Get the ssl config service for this context.
SSLConfigService* ssl_config_service() const { return ssl_config_service_; }
- void set_ssl_config_service(net::SSLConfigService* service) {
+ void set_ssl_config_service(SSLConfigService* service) {
ssl_config_service_ = service;
}
@@ -119,7 +119,7 @@ class URLRequestContext
FtpTransactionFactory* ftp_transaction_factory() {
return ftp_transaction_factory_;
}
- void set_ftp_transaction_factory(net::FtpTransactionFactory* factory) {
+ void set_ftp_transaction_factory(FtpTransactionFactory* factory) {
ftp_transaction_factory_ = factory;
}
@@ -144,7 +144,7 @@ class URLRequestContext
return transport_security_state_;
}
void set_transport_security_state(
- net::TransportSecurityState* state) {
+ TransportSecurityState* state) {
transport_security_state_ = state;
}
« no previous file with comments | « net/url_request/url_request.cc ('k') | net/url_request/url_request_error_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698