OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_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" |
11 #include "base/memory/linked_ptr.h" | 11 #include "base/memory/linked_ptr.h" |
12 #include "base/time/time.h" | 12 #include "base/time/time.h" |
13 #include "build/build_config.h" | 13 #include "build/build_config.h" |
| 14 #include "content/browser/frame_host/navigation_controller_delegate.h" |
14 #include "content/browser/ssl/ssl_manager.h" | 15 #include "content/browser/ssl/ssl_manager.h" |
15 #include "content/browser/web_contents/navigation_controller_delegate.h" | |
16 #include "content/public/browser/navigation_controller.h" | 16 #include "content/public/browser/navigation_controller.h" |
17 #include "content/public/browser/navigation_type.h" | 17 #include "content/public/browser/navigation_type.h" |
18 | 18 |
19 struct ViewHostMsg_FrameNavigate_Params; | 19 struct ViewHostMsg_FrameNavigate_Params; |
20 | 20 |
21 namespace content { | 21 namespace content { |
22 class NavigationEntryImpl; | 22 class NavigationEntryImpl; |
23 class RenderViewHost; | 23 class RenderViewHost; |
24 class WebContentsScreenshotManager; | 24 class WebContentsScreenshotManager; |
25 class SiteInstance; | 25 class SiteInstance; |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
400 // the wrong order in the history view. | 400 // the wrong order in the history view. |
401 TimeSmoother time_smoother_; | 401 TimeSmoother time_smoother_; |
402 | 402 |
403 scoped_ptr<WebContentsScreenshotManager> screenshot_manager_; | 403 scoped_ptr<WebContentsScreenshotManager> screenshot_manager_; |
404 | 404 |
405 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); | 405 DISALLOW_COPY_AND_ASSIGN(NavigationControllerImpl); |
406 }; | 406 }; |
407 | 407 |
408 } // namespace content | 408 } // namespace content |
409 | 409 |
410 #endif // CONTENT_BROWSER_WEB_CONTENTS_NAVIGATION_CONTROLLER_IMPL_H_ | 410 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATION_CONTROLLER_IMPL_H_ |
OLD | NEW |