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