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_NAVIGATOR_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 6 #define CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
7 | 7 |
8 #include "base/containers/scoped_ptr_hash_map.h" | 8 #include "base/containers/scoped_ptr_hash_map.h" |
9 #include "base/memory/ref_counted.h" | 9 #include "base/memory/ref_counted.h" |
10 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
11 #include "base/time/time.h" | 11 #include "base/time/time.h" |
12 #include "content/browser/frame_host/navigation_controller_impl.h" | 12 #include "content/browser/frame_host/navigation_controller_impl.h" |
13 #include "content/browser/frame_host/navigator.h" | 13 #include "content/browser/frame_host/navigator.h" |
14 #include "content/common/content_export.h" | 14 #include "content/common/content_export.h" |
15 #include "url/gurl.h" | 15 #include "url/gurl.h" |
16 | 16 |
17 class GURL; | 17 class GURL; |
18 struct FrameMsg_Navigate_Params; | |
19 | 18 |
20 namespace content { | 19 namespace content { |
21 | 20 |
22 class NavigationControllerImpl; | 21 class NavigationControllerImpl; |
23 class NavigatorDelegate; | 22 class NavigatorDelegate; |
24 class NavigatorTest; | 23 class NavigatorTest; |
25 struct LoadCommittedDetails; | 24 struct LoadCommittedDetails; |
26 struct CommitNavigationParams; | 25 struct CommitNavigationParams; |
27 struct CommonNavigationParams; | 26 struct CommonNavigationParams; |
28 struct RequestNavigationParams; | 27 struct RequestNavigationParams; |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 // different FrameTreeNodes, based on the frame_tree_node_id. | 143 // different FrameTreeNodes, based on the frame_tree_node_id. |
145 typedef base::ScopedPtrHashMap<int64, NavigationRequest> NavigationRequestMap; | 144 typedef base::ScopedPtrHashMap<int64, NavigationRequest> NavigationRequestMap; |
146 NavigationRequestMap navigation_request_map_; | 145 NavigationRequestMap navigation_request_map_; |
147 | 146 |
148 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); | 147 DISALLOW_COPY_AND_ASSIGN(NavigatorImpl); |
149 }; | 148 }; |
150 | 149 |
151 } // namespace content | 150 } // namespace content |
152 | 151 |
153 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ | 152 #endif // CONTENT_BROWSER_FRAME_HOST_NAVIGATOR_IMPL_H_ |
OLD | NEW |