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> | 8 #include <stddef.h> |
9 | 9 |
10 #include <memory> | 10 #include <memory> |
11 #include <vector> | 11 #include <vector> |
12 | 12 |
13 #include "base/mac/scoped_nsobject.h" | 13 #import "base/mac/scoped_nsobject.h" |
14 #include "base/macros.h" | 14 #include "base/macros.h" |
15 #include "base/memory/scoped_vector.h" | 15 #include "base/memory/scoped_vector.h" |
16 #import "ios/web/public/navigation_manager.h" | 16 #import "ios/web/public/navigation_manager.h" |
17 #include "ui/base/page_transition_types.h" | 17 #include "ui/base/page_transition_types.h" |
18 #include "url/gurl.h" | 18 #include "url/gurl.h" |
19 | 19 |
20 @class CRWSessionController; | 20 @class CRWSessionController; |
21 | 21 |
22 namespace web { | 22 namespace web { |
23 class BrowserState; | 23 class BrowserState; |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
159 // List of transient url rewriters added by |AddTransientURLRewriter()|. | 159 // List of transient url rewriters added by |AddTransientURLRewriter()|. |
160 std::unique_ptr<std::vector<BrowserURLRewriter::URLRewriter>> | 160 std::unique_ptr<std::vector<BrowserURLRewriter::URLRewriter>> |
161 transient_url_rewriters_; | 161 transient_url_rewriters_; |
162 | 162 |
163 DISALLOW_COPY_AND_ASSIGN(NavigationManagerImpl); | 163 DISALLOW_COPY_AND_ASSIGN(NavigationManagerImpl); |
164 }; | 164 }; |
165 | 165 |
166 } // namespace web | 166 } // namespace web |
167 | 167 |
168 #endif // IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ | 168 #endif // IOS_WEB_NAVIGATION_NAVIGATION_MANAGER_IMPL_H_ |
OLD | NEW |