diff options
Diffstat (limited to 'chrome/renderer/navigation_state.h')
-rw-r--r-- | chrome/renderer/navigation_state.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/chrome/renderer/navigation_state.h b/chrome/renderer/navigation_state.h index c280167..10eff0c 100644 --- a/chrome/renderer/navigation_state.h +++ b/chrome/renderer/navigation_state.h @@ -154,18 +154,6 @@ class NavigationState : public WebKit::WebDataSource::ExtraData { first_paint_after_load_time_ = value; } - // Info about the URL used as the target of this navigation. - URLPattern::SchemeMasks scheme_type() const { return scheme_type_; } - void set_scheme_type(URLPattern::SchemeMasks scheme_type) { - scheme_type_ = scheme_type; - } - - // True iff the histograms for the associated frame have been dumped. - bool load_histograms_recorded() const { return load_histograms_recorded_; } - void set_load_histograms_recorded(bool value) { - load_histograms_recorded_ = value; - } - // True if we have already processed the "DidCommitLoad" event for this // request. Used by session history. bool request_committed() const { return request_committed_; } @@ -286,8 +274,6 @@ class NavigationState : public WebKit::WebDataSource::ExtraData { base::Time finish_load_time_; base::Time first_paint_time_; base::Time first_paint_after_load_time_; - URLPattern::SchemeMasks scheme_type_; - bool load_histograms_recorded_; bool request_committed_; bool is_content_initiated_; int32 pending_page_id_; |