| OLD | NEW |
| 1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 2012 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 #import "ios/web/navigation/crw_session_entry.h" | 5 #import "ios/web/navigation/crw_session_entry.h" |
| 6 | 6 |
| 7 #include <stdint.h> | 7 #include <stdint.h> |
| 8 | 8 |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 } | 52 } |
| 53 | 53 |
| 54 - (web::NavigationItem*)navigationItem { | 54 - (web::NavigationItem*)navigationItem { |
| 55 return _item; | 55 return _item; |
| 56 } | 56 } |
| 57 | 57 |
| 58 - (web::NavigationItemImpl*)navigationItemImpl { | 58 - (web::NavigationItemImpl*)navigationItemImpl { |
| 59 return _item; | 59 return _item; |
| 60 } | 60 } |
| 61 | 61 |
| 62 - (BOOL)isEqual:(CRWSessionEntry*)object { |
| 63 return _item == [object navigationItem]; |
| 64 } |
| 65 |
| 62 @end | 66 @end |
| OLD | NEW |