Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(712)

Side by Side Diff: ios/web/web_state/web_state_impl.mm

Issue 2705673003: Removed CRWSessionEntry from CRWWebController. (Closed)
Patch Set: reintroduced delegate callback Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ios/web/web_state/ui/crw_web_controller_unittest.mm ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 #import "ios/web/web_state/web_state_impl.h" 5 #import "ios/web/web_state/web_state_impl.h"
6 6
7 #include <stddef.h> 7 #include <stddef.h>
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/memory/ptr_util.h" 11 #include "base/memory/ptr_util.h"
12 #include "base/metrics/histogram_macros.h" 12 #include "base/metrics/histogram_macros.h"
13 #include "base/strings/sys_string_conversions.h" 13 #include "base/strings/sys_string_conversions.h"
14 #import "ios/web/interstitials/web_interstitial_impl.h" 14 #import "ios/web/interstitials/web_interstitial_impl.h"
15 #import "ios/web/navigation/crw_session_controller.h" 15 #import "ios/web/navigation/crw_session_controller.h"
16 #import "ios/web/navigation/crw_session_entry.h"
17 #import "ios/web/navigation/navigation_item_impl.h" 16 #import "ios/web/navigation/navigation_item_impl.h"
18 #import "ios/web/navigation/session_storage_builder.h" 17 #import "ios/web/navigation/session_storage_builder.h"
19 #include "ios/web/public/browser_state.h" 18 #include "ios/web/public/browser_state.h"
20 #import "ios/web/public/crw_session_storage.h" 19 #import "ios/web/public/crw_session_storage.h"
21 #import "ios/web/public/java_script_dialog_presenter.h" 20 #import "ios/web/public/java_script_dialog_presenter.h"
22 #import "ios/web/public/navigation_item.h" 21 #import "ios/web/public/navigation_item.h"
23 #include "ios/web/public/url_util.h" 22 #include "ios/web/public/url_util.h"
24 #import "ios/web/public/web_client.h" 23 #import "ios/web/public/web_client.h"
25 #import "ios/web/public/web_state/context_menu_params.h" 24 #import "ios/web/public/web_state/context_menu_params.h"
26 #include "ios/web/public/web_state/credential.h" 25 #include "ios/web/public/web_state/credential.h"
(...skipping 704 matching lines...) Expand 10 before | Expand all | Expand 10 after
731 const LoadCommittedDetails& load_details) { 730 const LoadCommittedDetails& load_details) {
732 for (auto& observer : observers_) 731 for (auto& observer : observers_)
733 observer.NavigationItemCommitted(load_details); 732 observer.NavigationItemCommitted(load_details);
734 } 733 }
735 734
736 WebState* WebStateImpl::GetWebState() { 735 WebState* WebStateImpl::GetWebState() {
737 return this; 736 return this;
738 } 737 }
739 738
740 } // namespace web 739 } // namespace web
OLDNEW
« no previous file with comments | « ios/web/web_state/ui/crw_web_controller_unittest.mm ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698