| 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 #ifndef IOS_WEB_NAVIGATION_CRW_SESSION_ENTRY_H_ | 5 #ifndef IOS_WEB_NAVIGATION_CRW_SESSION_ENTRY_H_ |
| 6 #define IOS_WEB_NAVIGATION_CRW_SESSION_ENTRY_H_ | 6 #define IOS_WEB_NAVIGATION_CRW_SESSION_ENTRY_H_ |
| 7 | 7 |
| 8 #import <Foundation/Foundation.h> | 8 #import <Foundation/Foundation.h> |
| 9 #include <stdint.h> |
| 9 | 10 |
| 10 #include "base/memory/scoped_ptr.h" | 11 #include "base/memory/scoped_ptr.h" |
| 11 #include "base/strings/string16.h" | 12 #include "base/strings/string16.h" |
| 12 #include "base/time/time.h" | 13 #include "base/time/time.h" |
| 13 #include "ui/base/page_transition_types.h" | 14 #include "ui/base/page_transition_types.h" |
| 14 #include "url/gurl.h" | 15 #include "url/gurl.h" |
| 15 | 16 |
| 16 namespace web { | 17 namespace web { |
| 17 class NavigationItem; | 18 class NavigationItem; |
| 18 class NavigationItemImpl; | 19 class NavigationItemImpl; |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 | 69 |
| 69 // Pointer to the NavigationItemImpl associated with this CRWSessionEntry. | 70 // Pointer to the NavigationItemImpl associated with this CRWSessionEntry. |
| 70 @property(nonatomic, readonly) web::NavigationItemImpl* navigationItemImpl; | 71 @property(nonatomic, readonly) web::NavigationItemImpl* navigationItemImpl; |
| 71 | 72 |
| 72 // Initialize the session entry with the given NavigationItem. | 73 // Initialize the session entry with the given NavigationItem. |
| 73 - (instancetype)initWithNavigationItem:(scoped_ptr<web::NavigationItem>)item; | 74 - (instancetype)initWithNavigationItem:(scoped_ptr<web::NavigationItem>)item; |
| 74 | 75 |
| 75 @end | 76 @end |
| 76 | 77 |
| 77 #endif // IOS_WEB_NAVIGATION_CRW_SESSION_ENTRY_H_ | 78 #endif // IOS_WEB_NAVIGATION_CRW_SESSION_ENTRY_H_ |
| OLD | NEW |