| OLD | NEW |
| 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 CONTENT_CHILD_WEBURLRESPONSE_EXTRADATA_IMPL_H_ | 5 #ifndef CONTENT_CHILD_WEBURLRESPONSE_EXTRADATA_IMPL_H_ |
| 6 #define CONTENT_CHILD_WEBURLRESPONSE_EXTRADATA_IMPL_H_ | 6 #define CONTENT_CHILD_WEBURLRESPONSE_EXTRADATA_IMPL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/macros.h" |
| 12 #include "content/common/content_export.h" | 12 #include "content/common/content_export.h" |
| 13 #include "net/http/http_response_info.h" | 13 #include "net/http/http_response_info.h" |
| 14 #include "third_party/WebKit/public/platform/WebURLResponse.h" | 14 #include "third_party/WebKit/public/platform/WebURLResponse.h" |
| 15 | 15 |
| 16 namespace content { | 16 namespace content { |
| 17 | 17 |
| 18 class CONTENT_EXPORT WebURLResponseExtraDataImpl : | 18 class CONTENT_EXPORT WebURLResponseExtraDataImpl : |
| 19 public NON_EXPORTED_BASE(blink::WebURLResponse::ExtraData) { | 19 public NON_EXPORTED_BASE(blink::WebURLResponse::ExtraData) { |
| 20 public: | 20 public: |
| 21 explicit WebURLResponseExtraDataImpl( | 21 explicit WebURLResponseExtraDataImpl( |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 net::HttpResponseInfo::ConnectionInfo connection_info_; | 100 net::HttpResponseInfo::ConnectionInfo connection_info_; |
| 101 bool was_alternate_protocol_available_; | 101 bool was_alternate_protocol_available_; |
| 102 bool is_using_lofi_; | 102 bool is_using_lofi_; |
| 103 | 103 |
| 104 DISALLOW_COPY_AND_ASSIGN(WebURLResponseExtraDataImpl); | 104 DISALLOW_COPY_AND_ASSIGN(WebURLResponseExtraDataImpl); |
| 105 }; | 105 }; |
| 106 | 106 |
| 107 } // namespace content | 107 } // namespace content |
| 108 | 108 |
| 109 #endif // CONTENT_CHILD_WEBURLRESPONSE_EXTRADATA_IMPL_H_ | 109 #endif // CONTENT_CHILD_WEBURLRESPONSE_EXTRADATA_IMPL_H_ |
| OLD | NEW |