Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 #include "content/public/renderer/document_state.h" | 5 #include "content/public/renderer/document_state.h" |
| 6 | 6 |
| 7 #include "content/public/common/password_form.h" | |
| 7 #include "content/public/renderer/navigation_state.h" | 8 #include "content/public/renderer/navigation_state.h" |
| 8 #include "webkit/forms/password_form.h" | |
| 9 #include "webkit/glue/alt_error_page_resource_fetcher.h" | 9 #include "webkit/glue/alt_error_page_resource_fetcher.h" |
| 10 | 10 |
| 11 namespace content { | 11 namespace content { |
| 12 | 12 |
| 13 DocumentState::DocumentState() | 13 DocumentState::DocumentState() |
| 14 : load_histograms_recorded_(false), | 14 : load_histograms_recorded_(false), |
| 15 web_timing_histograms_recorded_(false), | 15 web_timing_histograms_recorded_(false), |
| 16 http_status_code_(0), | 16 http_status_code_(0), |
| 17 was_fetched_via_spdy_(false), | 17 was_fetched_via_spdy_(false), |
| 18 was_npn_negotiated_(false), | 18 was_npn_negotiated_(false), |
| 19 was_alternate_protocol_available_(false), | 19 was_alternate_protocol_available_(false), |
| 20 was_fetched_via_proxy_(false), | 20 was_fetched_via_proxy_(false), |
| 21 use_error_page_(false), | 21 use_error_page_(false), |
| 22 is_overriding_user_agent_(false), | 22 is_overriding_user_agent_(false), |
| 23 must_reset_scroll_and_scale_state_(false), | 23 must_reset_scroll_and_scale_state_(false), |
| 24 was_prefetcher_(false), | 24 was_prefetcher_(false), |
| 25 was_referred_by_prefetcher_(false), | 25 was_referred_by_prefetcher_(false), |
| 26 load_type_(UNDEFINED_LOAD), | 26 load_type_(UNDEFINED_LOAD), |
| 27 cache_policy_override_set_(false), | 27 cache_policy_override_set_(false), |
| 28 cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy), | 28 cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy), |
| 29 referrer_policy_set_(false), | 29 referrer_policy_set_(false), |
| 30 referrer_policy_(WebKit::WebReferrerPolicyDefault) { | 30 referrer_policy_(WebKit::WebReferrerPolicyDefault) { |
| 31 } | 31 } |
| 32 | 32 |
| 33 DocumentState::~DocumentState() {} | 33 DocumentState::~DocumentState() {} |
| 34 | 34 |
| 35 void DocumentState::set_password_form_data( | 35 void DocumentState::set_password_form_data( |
| 36 scoped_ptr<webkit::forms::PasswordForm> data) { | 36 scoped_ptr<content::PasswordForm> data) { |
|
jam
2012/10/03 16:43:49
ditto
blundell
2012/10/03 21:17:55
Done.
| |
| 37 password_form_data_.reset(data.release()); | 37 password_form_data_.reset(data.release()); |
| 38 } | 38 } |
| 39 | 39 |
| 40 void DocumentState::set_alt_error_page_fetcher( | 40 void DocumentState::set_alt_error_page_fetcher( |
| 41 webkit_glue::AltErrorPageResourceFetcher* f) { | 41 webkit_glue::AltErrorPageResourceFetcher* f) { |
| 42 alt_error_page_fetcher_.reset(f); | 42 alt_error_page_fetcher_.reset(f); |
| 43 } | 43 } |
| 44 | 44 |
| 45 void DocumentState::set_navigation_state(NavigationState* navigation_state) { | 45 void DocumentState::set_navigation_state(NavigationState* navigation_state) { |
| 46 navigation_state_.reset(navigation_state); | 46 navigation_state_.reset(navigation_state); |
| 47 } | 47 } |
| 48 | 48 |
| 49 } // namespace content | 49 } // namespace content |
| OLD | NEW |