| 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 "content/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 |
| 11 NavigationState::~NavigationState() {} | 11 NavigationState::~NavigationState() {} |
| 12 | 12 |
| 13 void NavigationState::set_user_script_idle_scheduler( | 13 void NavigationState::set_user_script_idle_scheduler( |
| 14 UserScriptIdleScheduler* scheduler) { | 14 UserScriptIdleScheduler* scheduler) { |
| 15 user_script_idle_scheduler_.reset(scheduler); | 15 user_script_idle_scheduler_.reset(scheduler); |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 http_status_code_(0), | 71 http_status_code_(0), |
| 72 was_fetched_via_spdy_(false), | 72 was_fetched_via_spdy_(false), |
| 73 was_npn_negotiated_(false), | 73 was_npn_negotiated_(false), |
| 74 was_alternate_protocol_available_(false), | 74 was_alternate_protocol_available_(false), |
| 75 was_fetched_via_proxy_(false), | 75 was_fetched_via_proxy_(false), |
| 76 was_translated_(false), | 76 was_translated_(false), |
| 77 was_within_same_page_(false), | 77 was_within_same_page_(false), |
| 78 was_prefetcher_(false), | 78 was_prefetcher_(false), |
| 79 was_referred_by_prefetcher_(false) { | 79 was_referred_by_prefetcher_(false) { |
| 80 } | 80 } |
| OLD | NEW |