Chromium Code Reviews| Index: ios/chrome/browser/sessions/session_window.h |
| diff --git a/ios/chrome/browser/sessions/session_window.h b/ios/chrome/browser/sessions/session_window.h |
| index e2b838d2157250ce9abd9d6df8b9d23f1068fdc7..e773ee8ecbb714e413b6bbd98d16ff1e7e6b3d7b 100644 |
| --- a/ios/chrome/browser/sessions/session_window.h |
| +++ b/ios/chrome/browser/sessions/session_window.h |
| @@ -21,16 +21,15 @@ |
| // initialized "empty" (without any sessions) and sessions are added one at a |
| // time. For example: |
| // SessionWindowIOS* window = [[SessionWindow alloc] init]; |
| -// [window addSession:session_storage]; |
| +// [window addSerializedSession:session_storage]; |
| // ... |
| -// [window setSelectedInex:mySelectedIndex]; |
| +// [window setSelectedIndex:mySelectedIndex]; |
| - (void)addSerializedSession:(CRWNavigationManagerStorage*)session; |
| // Clears all added sessions. |
| - (void)clearSessions; |
| // The serialized session objects. |
| -@property(nonatomic, readonly) NSArray* sessions; |
|
marq (ping after 24h)
2017/01/26 10:56:28
This change seems out of scope for this CL as desc
|
| // The currently selected session. NSNotFound if the sessionWindow contains |
| // no sessions; otherwise 0 <= |selectedIndex| < |unclaimedSessions|. |