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 IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ | 5 #ifndef IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ |
6 #define IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ | 6 #define IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ |
7 | 7 |
| 8 #include <stddef.h> |
| 9 |
8 #include <vector> | 10 #include <vector> |
9 | 11 |
10 #include "base/basictypes.h" | |
11 #include "base/mac/scoped_nsobject.h" | 12 #include "base/mac/scoped_nsobject.h" |
| 13 #include "base/macros.h" |
12 #include "base/memory/scoped_vector.h" | 14 #include "base/memory/scoped_vector.h" |
13 #include "ios/web/public/navigation_manager.h" | 15 #include "ios/web/public/navigation_manager.h" |
14 #include "ui/base/page_transition_types.h" | 16 #include "ui/base/page_transition_types.h" |
15 #include "url/gurl.h" | 17 #include "url/gurl.h" |
16 | 18 |
17 @class CRWSessionController; | 19 @class CRWSessionController; |
18 @class CRWSessionEntry; | 20 @class CRWSessionEntry; |
19 | 21 |
20 namespace web { | 22 namespace web { |
21 class BrowserState; | 23 class BrowserState; |
(...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 // List of transient url rewriters added by |AddTransientURLRewriter()|. | 145 // List of transient url rewriters added by |AddTransientURLRewriter()|. |
144 scoped_ptr<std::vector<BrowserURLRewriter::URLRewriter>> | 146 scoped_ptr<std::vector<BrowserURLRewriter::URLRewriter>> |
145 transient_url_rewriters_; | 147 transient_url_rewriters_; |
146 | 148 |
147 DISALLOW_COPY_AND_ASSIGN(NavigationManagerImpl); | 149 DISALLOW_COPY_AND_ASSIGN(NavigationManagerImpl); |
148 }; | 150 }; |
149 | 151 |
150 } // namespace web | 152 } // namespace web |
151 | 153 |
152 #endif // IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ | 154 #endif // IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ |
OLD | NEW |