| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "ios/web/web_state/web_state_impl.h" | 5 #include "ios/web/web_state/web_state_impl.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include "base/strings/sys_string_conversions.h" | 10 #include "base/strings/sys_string_conversions.h" |
| 8 #include "ios/web/interstitials/web_interstitial_impl.h" | 11 #include "ios/web/interstitials/web_interstitial_impl.h" |
| 9 #import "ios/web/navigation/crw_session_controller.h" | 12 #import "ios/web/navigation/crw_session_controller.h" |
| 10 #import "ios/web/navigation/crw_session_entry.h" | 13 #import "ios/web/navigation/crw_session_entry.h" |
| 11 #include "ios/web/navigation/navigation_item_impl.h" | 14 #include "ios/web/navigation/navigation_item_impl.h" |
| 12 #include "ios/web/net/request_group_util.h" | 15 #include "ios/web/net/request_group_util.h" |
| 13 #include "ios/web/public/browser_state.h" | 16 #include "ios/web/public/browser_state.h" |
| 14 #include "ios/web/public/navigation_item.h" | 17 #include "ios/web/public/navigation_item.h" |
| 15 #include "ios/web/public/url_util.h" | 18 #include "ios/web/public/url_util.h" |
| 16 #include "ios/web/public/web_client.h" | 19 #include "ios/web/public/web_client.h" |
| (...skipping 562 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 579 const LoadCommittedDetails& load_details) { | 582 const LoadCommittedDetails& load_details) { |
| 580 FOR_EACH_OBSERVER(WebStateObserver, observers_, | 583 FOR_EACH_OBSERVER(WebStateObserver, observers_, |
| 581 NavigationItemCommitted(load_details)); | 584 NavigationItemCommitted(load_details)); |
| 582 } | 585 } |
| 583 | 586 |
| 584 WebState* WebStateImpl::GetWebState() { | 587 WebState* WebStateImpl::GetWebState() { |
| 585 return this; | 588 return this; |
| 586 } | 589 } |
| 587 | 590 |
| 588 } // namespace web | 591 } // namespace web |
| OLD | NEW |