Chromium Code Reviews| 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" | |
|
Charlie Reis
2016/08/11 23:58:43
Why is this removed? This file uses NavigationTyp
Takashi Toyoshima
2016/09/07 12:07:44
Because when I made this change, NavigationControl
| |
| 24 | 23 |
| 25 struct FrameHostMsg_DidCommitProvisionalLoad_Params; | 24 struct FrameHostMsg_DidCommitProvisionalLoad_Params; |
| 26 | 25 |
| 27 namespace content { | 26 namespace content { |
| 28 class FrameTreeNode; | 27 class FrameTreeNode; |
| 29 class RenderFrameHostImpl; | 28 class RenderFrameHostImpl; |
| 30 class NavigationEntryScreenshotManager; | 29 class NavigationEntryScreenshotManager; |
| 31 class SiteInstance; | 30 class SiteInstance; |
| 32 struct LoadCommittedDetails; | 31 struct LoadCommittedDetails; |
| 33 | 32 |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 447 TimeSmoother time_smoother_; | 446 TimeSmoother time_smoother_; |
| 448 | 447 |
| 449 std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_; | 448 std::unique_ptr<NavigationEntryScreenshotManager> screenshot_manager_; |
| 450 | 449 |
| 451 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 450 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
| 452 }; | 451 }; |
| 453 | 452 |
| 454 } // namespace content | 453 } // namespace content |
| 455 | 454 |
| 456 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ | 455 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
| OLD | NEW |