| 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 |
| 11 #include <vector> | 11 #include <vector> |
| 12 | 12 |
| 13 #include "base/callback.h" | 13 #include "base/callback.h" |
| 14 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 15 #include "base/gtest_prod_util.h" | 15 #include "base/gtest_prod_util.h" |
| 16 #include "base/macros.h" | 16 #include "base/macros.h" |
| 17 #include "base/time/time.h" | 17 #include "base/time/time.h" |
| 18 #include "build/build_config.h" | 18 #include "build/build_config.h" |
| 19 #include "content/browser/frame_host/navigation_controller_delegate.h" | 19 #include "content/browser/frame_host/navigation_controller_delegate.h" |
| 20 #include "content/browser/frame_host/navigation_entry_impl.h" | 20 #include "content/browser/frame_host/navigation_entry_impl.h" |
| 21 #include "content/browser/ssl/ssl_manager.h" | 21 #include "content/browser/ssl/ssl_manager.h" |
| 22 #include "content/public/browser/navigation_controller.h" | 22 #include "content/public/browser/navigation_controller.h" |
| 23 #include "content/public/browser/navigation_type.h" | 23 #include "content/public/browser/navigation_type.h" |
| 24 #include "content/public/browser/reload_type.h" |
| 24 | 25 |
| 25 struct FrameHostMsg_DidCommitProvisionalLoad_Params; | 26 struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
| 26 | 27 |
| 27 namespace content { | 28 namespace content { |
| 28 class FrameTreeNode; | 29 class FrameTreeNode; |
| 29 class RenderFrameHostImpl; | 30 class RenderFrameHostImpl; |
| 30 class NavigationEntryScreenshotManager; | 31 class NavigationEntryScreenshotManager; |
| 31 class SiteInstance; | 32 class SiteInstance; |
| 32 struct LoadCommittedDetails; | 33 struct LoadCommittedDetails; |
| 33 | 34 |
| (...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 448 TimeSmoother time_smoother_; | 449 TimeSmoother time_smoother_; |
| 449 | 450 |
| 450 std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 451 std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
| 451 | 452 |
| 452 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 453 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 453 }; | 454 }; |
| 454 | 455 |
| 455 } // namespace content | 456 } // namespace content |
| 456 | 457 |
| 457 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 458 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |