| 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 "base/callback.h" | 8 #include "base/callback.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/gtest_prod_util.h" | 10 #include "base/gtest_prod_util.h" |
| (...skipping 268 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 279 void RendererDidNavigateToNewPage( | 279 void RendererDidNavigateToNewPage( |
| 280 RenderFrameHostImpl* rfh, | 280 RenderFrameHostImpl* rfh, |
| 281 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, | 281 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, |
| 282 bool replace_entry); | 282 bool replace_entry); |
| 283 void RendererDidNavigateToExistingPage( | 283 void RendererDidNavigateToExistingPage( |
| 284 RenderFrameHostImpl* rfh, | 284 RenderFrameHostImpl* rfh, |
| 285 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); | 285 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); |
| 286 void RendererDidNavigateToSamePage( | 286 void RendererDidNavigateToSamePage( |
| 287 RenderFrameHostImpl* rfh, | 287 RenderFrameHostImpl* rfh, |
| 288 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); | 288 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); |
| 289 void RendererDidNavigateInPage( | |
| 290 RenderFrameHostImpl* rfh, | |
| 291 const FrameHostMsg_DidCommitProvisionalLoad_Params& params, | |
| 292 bool* did_replace_entry); | |
| 293 void RendererDidNavigateNewSubframe( | 289 void RendererDidNavigateNewSubframe( |
| 294 RenderFrameHostImpl* rfh, | 290 RenderFrameHostImpl* rfh, |
| 295 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); | 291 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); |
| 296 bool RendererDidNavigateAutoSubframe( | 292 bool RendererDidNavigateAutoSubframe( |
| 297 RenderFrameHostImpl* rfh, | 293 RenderFrameHostImpl* rfh, |
| 298 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); | 294 const FrameHostMsg_DidCommitProvisionalLoad_Params& params); |
| 299 | 295 |
| 300 // Helper function for code shared between Reload() and ReloadIgnoringCache(). | 296 // Helper function for code shared between Reload() and ReloadIgnoringCache(). |
| 301 void ReloadInternal(bool check_for_repost, ReloadType reload_type); | 297 void ReloadInternal(bool check_for_repost, ReloadType reload_type); |
| 302 | 298 |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 TimeSmoother time_smoother_; | 445 TimeSmoother time_smoother_; |
| 450 | 446 |
| 451 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 447 scoped_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
| 452 | 448 |
| 453 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 449 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 454 }; | 450 }; |
| 455 | 451 |
| 456 } // namespace content | 452 } // namespace content |
| 457 | 453 |
| 458 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 454 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |