Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: chrome/renderer/navigation_state.cc

Issue 6546069: Only display Link Doctor page on 404 errors with no body (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Remove all postponed data code Created 9 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 int pending_history_list_offset) 64 int pending_history_list_offset)
65 : transition_type_(transition_type), 65 : transition_type_(transition_type),
66 load_type_(UNDEFINED_LOAD), 66 load_type_(UNDEFINED_LOAD),
67 request_time_(request_time), 67 request_time_(request_time),
68 load_histograms_recorded_(false), 68 load_histograms_recorded_(false),
69 web_timing_histograms_recorded_(false), 69 web_timing_histograms_recorded_(false),
70 request_committed_(false), 70 request_committed_(false),
71 is_content_initiated_(is_content_initiated), 71 is_content_initiated_(is_content_initiated),
72 pending_page_id_(pending_page_id), 72 pending_page_id_(pending_page_id),
73 pending_history_list_offset_(pending_history_list_offset), 73 pending_history_list_offset_(pending_history_list_offset),
74 postpone_loading_data_(false), 74 maybe_use_error_page_(false),
75 is_prerendering_(false), 75 is_prerendering_(false),
76 was_started_as_prerender_(false), 76 was_started_as_prerender_(false),
77 cache_policy_override_set_(false), 77 cache_policy_override_set_(false),
78 cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy), 78 cache_policy_override_(WebKit::WebURLRequest::UseProtocolCachePolicy),
79 user_script_idle_scheduler_(NULL), 79 user_script_idle_scheduler_(NULL),
80 http_status_code_(0), 80 http_status_code_(0),
81 was_fetched_via_spdy_(false), 81 was_fetched_via_spdy_(false),
82 was_npn_negotiated_(false), 82 was_npn_negotiated_(false),
83 was_alternate_protocol_available_(false), 83 was_alternate_protocol_available_(false),
84 was_fetched_via_proxy_(false), 84 was_fetched_via_proxy_(false),
85 was_translated_(false), 85 was_translated_(false),
86 was_within_same_page_(false), 86 was_within_same_page_(false),
87 was_prefetcher_(false), 87 was_prefetcher_(false),
88 was_referred_by_prefetcher_(false) { 88 was_referred_by_prefetcher_(false) {
89 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698