| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 // replace the current one (e.g., for location.replace or successful loads | 281 // replace the current one (e.g., for location.replace or successful loads |
| 282 // after net errors), in contrast to updating a NavigationEntry in place | 282 // after net errors), in contrast to updating a NavigationEntry in place |
| 283 // (e.g., for history.replaceState). | 283 // (e.g., for history.replaceState). |
| 284 void RendererDidNavigateToNewPage( | 284 void RendererDidNavigateToNewPage( |
| 285 RenderFrameHostImpl* rfh, | 285 RenderFrameHostImpl* rfh, |
| 286 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, | 286 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, |
| 287 bool is_in_page, | 287 bool is_in_page, |
| 288 bool replace_entry); | 288 bool replace_entry); |
| 289 void RendererDidNavigateToExistingPage( | 289 void RendererDidNavigateToExistingPage( |
| 290 RenderFrameHostImpl* rfh, | 290 RenderFrameHostImpl* rfh, |
| 291 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); | 291 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, |
| 292 bool is_in_page); |
| 292 void RendererDidNavigateToSamePage( | 293 void RendererDidNavigateToSamePage( |
| 293 RenderFrameHostImpl* rfh, | 294 RenderFrameHostImpl* rfh, |
| 294 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); | 295 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); |
| 295 void RendererDidNavigateNewSubframe( | 296 void RendererDidNavigateNewSubframe( |
| 296 RenderFrameHostImpl* rfh, | 297 RenderFrameHostImpl* rfh, |
| 297 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, | 298 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, |
| 298 bool is_in_page, | 299 bool is_in_page, |
| 299 bool replace_entry); | 300 bool replace_entry); |
| 300 bool RendererDidNavigateAutoSubframe( | 301 bool RendererDidNavigateAutoSubframe( |
| 301 RenderFrameHostImpl* rfh, | 302 RenderFrameHostImpl* rfh, |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 TimeSmoother time_smoother_; | 448 TimeSmoother time_smoother_; |
| 448 | 449 |
| 449 std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 450 std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
| 450 | 451 |
| 451 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 452 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 452 }; | 453 }; |
| 453 | 454 |
| 454 } // namespace content | 455 } // namespace content |
| 455 | 456 |
| 456 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 457 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |