| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef CONTENT_COMMON_NAVIGATION_PARAMS_H_ | 5 #ifndef CONTENT_COMMON_NAVIGATION_PARAMS_H_ |
| 6 #define CONTENT_COMMON_NAVIGATION_PARAMS_H_ | 6 #define CONTENT_COMMON_NAVIGATION_PARAMS_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include <map> | 10 #include <map> |
| 11 #include <string> | 11 #include <string> |
| 12 | 12 |
| 13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
| 14 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 15 #include "build/build_config.h" | 15 #include "build/build_config.h" |
| 16 #include "content/common/content_export.h" | 16 #include "content/common/content_export.h" |
| 17 #include "content/common/frame_message_enums.h" | 17 #include "content/common/frame_message_enums.h" |
| 18 #include "content/common/navigation_gesture.h" | |
| 19 #include "content/common/resource_request_body_impl.h" | 18 #include "content/common/resource_request_body_impl.h" |
| 19 #include "content/public/common/navigation_gesture.h" |
| 20 #include "content/public/common/page_state.h" | 20 #include "content/public/common/page_state.h" |
| 21 #include "content/public/common/referrer.h" | 21 #include "content/public/common/referrer.h" |
| 22 #include "content/public/common/request_context_type.h" | 22 #include "content/public/common/request_context_type.h" |
| 23 #include "content/public/common/resource_response.h" | 23 #include "content/public/common/resource_response.h" |
| 24 #include "ui/base/page_transition_types.h" | 24 #include "ui/base/page_transition_types.h" |
| 25 #include "url/gurl.h" | 25 #include "url/gurl.h" |
| 26 | 26 |
| 27 namespace content { | 27 namespace content { |
| 28 | 28 |
| 29 // The LoFi state which determines whether to add the Lo-Fi header. | 29 // The LoFi state which determines whether to add the Lo-Fi header. |
| (...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 343 ~NavigationParams(); | 343 ~NavigationParams(); |
| 344 | 344 |
| 345 CommonNavigationParams common_params; | 345 CommonNavigationParams common_params; |
| 346 StartNavigationParams start_params; | 346 StartNavigationParams start_params; |
| 347 RequestNavigationParams request_params; | 347 RequestNavigationParams request_params; |
| 348 }; | 348 }; |
| 349 | 349 |
| 350 } // namespace content | 350 } // namespace content |
| 351 | 351 |
| 352 #endif // CONTENT_COMMON_NAVIGATION_PARAMS_H_ | 352 #endif // CONTENT_COMMON_NAVIGATION_PARAMS_H_ |
| OLD | NEW |