OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "chrome/renderer/navigation_state.h" | 5 #include "chrome/renderer/navigation_state.h" |
6 | 6 |
7 #include "chrome/renderer/user_script_idle_scheduler.h" | 7 #include "chrome/renderer/user_script_idle_scheduler.h" |
8 #include "webkit/glue/alt_error_page_resource_fetcher.h" | 8 #include "webkit/glue/alt_error_page_resource_fetcher.h" |
9 #include "webkit/glue/password_form.h" | 9 #include "webkit/glue/password_form.h" |
10 | 10 |
(...skipping 21 matching lines...) Expand all Loading... |
32 : transition_type_(transition_type), | 32 : transition_type_(transition_type), |
33 load_type_(UNDEFINED_LOAD), | 33 load_type_(UNDEFINED_LOAD), |
34 request_time_(request_time), | 34 request_time_(request_time), |
35 load_histograms_recorded_(false), | 35 load_histograms_recorded_(false), |
36 web_timing_histograms_recorded_(false), | 36 web_timing_histograms_recorded_(false), |
37 request_committed_(false), | 37 request_committed_(false), |
38 is_content_initiated_(is_content_initiated), | 38 is_content_initiated_(is_content_initiated), |
39 pending_page_id_(pending_page_id), | 39 pending_page_id_(pending_page_id), |
40 pending_history_list_offset_(pending_history_list_offset), | 40 pending_history_list_offset_(pending_history_list_offset), |
41 postpone_loading_data_(false), | 41 postpone_loading_data_(false), |
| 42 is_prerendering_(false), |
42 cache_policy_override_set_(false), | 43 cache_policy_override_set_(false), |
43 cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy), | 44 cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy), |
44 user_script_idle_scheduler_(NULL), | 45 user_script_idle_scheduler_(NULL), |
45 http_status_code_(0), | 46 http_status_code_(0), |
46 was_fetched_via_spdy_(false), | 47 was_fetched_via_spdy_(false), |
47 was_npn_negotiated_(false), | 48 was_npn_negotiated_(false), |
48 was_alternate_protocol_available_(false), | 49 was_alternate_protocol_available_(false), |
49 was_fetched_via_proxy_(false), | 50 was_fetched_via_proxy_(false), |
50 was_translated_(false), | 51 was_translated_(false), |
51 was_within_same_page_(false), | 52 was_within_same_page_(false), |
52 was_prefetcher_(false), | 53 was_prefetcher_(false), |
53 was_referred_by_prefetcher_(false) { | 54 was_referred_by_prefetcher_(false) { |
54 } | 55 } |
OLD | NEW |