| Index: content/common/navigation_params.h
|
| diff --git a/content/common/navigation_params.h b/content/common/navigation_params.h
|
| index 765d3cb69dda71b29ed9e10db69ba0b7b1f8d9c5..4599d3df8b450ed8a55a62aa2c736a5d34d33051 100644
|
| --- a/content/common/navigation_params.h
|
| +++ b/content/common/navigation_params.h
|
| @@ -66,6 +66,7 @@ struct CONTENT_EXPORT CommonNavigationParams {
|
| LoFiState lofi_state,
|
| const base::TimeTicks& navigation_start,
|
| std::string method,
|
| + bool post_contains_passwords,
|
| const scoped_refptr<ResourceRequestBodyImpl>& post_data);
|
| CommonNavigationParams(const CommonNavigationParams& other);
|
| ~CommonNavigationParams();
|
| @@ -125,6 +126,9 @@ struct CONTENT_EXPORT CommonNavigationParams {
|
| // The request method: GET, POST, etc.
|
| std::string method;
|
|
|
| + // Indicates if the post data below contains passwords.
|
| + bool post_contains_passwords;
|
| +
|
| // Body of HTTP POST request.
|
| scoped_refptr<ResourceRequestBodyImpl> post_data;
|
| };
|
|
|