| Index: net/url_request/url_request_context_builder.h
 | 
| diff --git a/net/url_request/url_request_context_builder.h b/net/url_request/url_request_context_builder.h
 | 
| index 438638e20d3de047ad53fc13a64f00c3314eda0a..5714ab63cc382708295dba381a65e97828a4ab68 100644
 | 
| --- a/net/url_request/url_request_context_builder.h
 | 
| +++ b/net/url_request/url_request_context_builder.h
 | 
| @@ -58,27 +58,12 @@ class URLRequestInterceptor;
 | 
|  class NET_EXPORT URLRequestContextBuilder {
 | 
|   public:
 | 
|    struct NET_EXPORT HttpCacheParams {
 | 
| -    enum Type {
 | 
| -      // In-memory cache.
 | 
| -      IN_MEMORY,
 | 
| -      // Disk cache using "default" backend.
 | 
| -      DISK,
 | 
| -      // Disk cache using "simple" backend (SimpleBackendImpl).
 | 
| -      DISK_SIMPLE,
 | 
| -    };
 | 
| -
 | 
|      HttpCacheParams();
 | 
|      ~HttpCacheParams();
 | 
|  
 | 
| -    // The type of HTTP cache. Default is IN_MEMORY.
 | 
| -    Type type;
 | 
| -
 | 
|      // The max size of the cache in bytes. Default is algorithmically determined
 | 
|      // based off available disk space.
 | 
|      int max_size;
 | 
| -
 | 
| -    // The cache path (when type is DISK).
 | 
| -    base::FilePath path;
 | 
|    };
 | 
|  
 | 
|    struct NET_EXPORT HttpNetworkSessionParams {
 | 
| 
 |