| Index: content/child/request_extra_data.h
 | 
| diff --git a/content/child/request_extra_data.h b/content/child/request_extra_data.h
 | 
| index 3b716196e600f0bc4bbe900ed788147679bb411e..2d864c545716295e3dbb9d7ac394fb174dcaf24e 100644
 | 
| --- a/content/child/request_extra_data.h
 | 
| +++ b/content/child/request_extra_data.h
 | 
| @@ -23,10 +23,9 @@ class CONTENT_EXPORT RequestExtraData
 | 
|                     bool was_after_preconnect_request,
 | 
|                     int render_frame_id,
 | 
|                     bool is_main_frame,
 | 
| -                   int64 frame_id,
 | 
|                     const GURL& frame_origin,
 | 
|                     bool parent_is_main_frame,
 | 
| -                   int64 parent_frame_id,
 | 
| +                   int parent_render_frame_id,
 | 
|                     bool allow_download,
 | 
|                     PageTransition transition_type,
 | 
|                     bool should_replace_current_entry,
 | 
| @@ -39,10 +38,9 @@ class CONTENT_EXPORT RequestExtraData
 | 
|    }
 | 
|    int render_frame_id() const { return render_frame_id_; }
 | 
|    bool is_main_frame() const { return is_main_frame_; }
 | 
| -  int64 frame_id() const { return frame_id_; }
 | 
|    GURL frame_origin() const { return frame_origin_; }
 | 
|    bool parent_is_main_frame() const { return parent_is_main_frame_; }
 | 
| -  int64 parent_frame_id() const { return parent_frame_id_; }
 | 
| +  int parent_render_frame_id() const { return parent_render_frame_id_; }
 | 
|    bool allow_download() const { return allow_download_; }
 | 
|    PageTransition transition_type() const { return transition_type_; }
 | 
|    bool should_replace_current_entry() const {
 | 
| @@ -59,10 +57,9 @@ class CONTENT_EXPORT RequestExtraData
 | 
|    blink::WebPageVisibilityState visibility_state_;
 | 
|    int render_frame_id_;
 | 
|    bool is_main_frame_;
 | 
| -  int64 frame_id_;
 | 
|    GURL frame_origin_;
 | 
|    bool parent_is_main_frame_;
 | 
| -  int64 parent_frame_id_;
 | 
| +  int parent_render_frame_id_;
 | 
|    bool allow_download_;
 | 
|    PageTransition transition_type_;
 | 
|    bool should_replace_current_entry_;
 | 
| 
 |