OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_ITEM_IMPL_H_ | 5 #ifndef IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ |
6 #define IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ | 6 #define IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ |
7 | 7 |
8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
9 | 9 |
10 #include "base/basictypes.h" | |
11 #include "base/mac/scoped_nsobject.h" | 10 #include "base/mac/scoped_nsobject.h" |
12 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
13 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
14 #include "ios/web/navigation/navigation_item_facade_delegate.h" | 13 #include "ios/web/navigation/navigation_item_facade_delegate.h" |
15 #include "ios/web/public/favicon_status.h" | 14 #include "ios/web/public/favicon_status.h" |
16 #include "ios/web/public/navigation_item.h" | 15 #include "ios/web/public/navigation_item.h" |
17 #include "ios/web/public/referrer.h" | 16 #include "ios/web/public/referrer.h" |
18 #include "ios/web/public/ssl_status.h" | 17 #include "ios/web/public/ssl_status.h" |
19 #include "url/gurl.h" | 18 #include "url/gurl.h" |
20 | 19 |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 | 140 |
142 // Weak pointer to the facade delegate. | 141 // Weak pointer to the facade delegate. |
143 scoped_ptr<NavigationItemFacadeDelegate> facade_delegate_; | 142 scoped_ptr<NavigationItemFacadeDelegate> facade_delegate_; |
144 | 143 |
145 // Copy and assignment is explicitly allowed for this class. | 144 // Copy and assignment is explicitly allowed for this class. |
146 }; | 145 }; |
147 | 146 |
148 } // namespace web | 147 } // namespace web |
149 | 148 |
150 #endif // IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ | 149 #endif // IOS_WEB_NAVIGATION_NAVIGATION_ITEM_IMPL_H_ |
OLD | NEW |