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
3 // found in the LICENSE file.
5 #ifndef IOS_WEB_PUBLIC_WEB_LOAD_COMMITTED_DETAILS_H_
6 #define IOS_WEB_PUBLIC_WEB_LOAD_COMMITTED_DETAILS_H_
13 struct LoadCommittedDetails
{
14 // By default, the item will be filled according to a new main frame
16 LoadCommittedDetails();
18 // The committed item. This will be the active item in the controller.
19 web::NavigationItem
* item
;
21 // The index of the previously committed navigation item. This will be -1
22 // if there are no previous items.
23 int previous_item_index
;
25 // The previous URL that the user was on. This may be empty if none.
28 // True if the navigation was in-page. This means that the active item's
29 // URL and the |previous_url| are the same except for reference fragments.
35 #endif // IOS_WEB_PUBLIC_WEB_LOAD_COMMITTED_DETAILS_H_