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

Side by Side Diff: ios/web_view/internal/cwv_web_view.mm

Issue 2715043002: Replace prefix of ios/web_view C++ classes. (Closed)
Patch Set: Respond to comments. 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_view/internal/cwv.mm ('k') | ios/web_view/internal/cwv_website_data_store.mm » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 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_view/public/cwv_web_view.h" 5 #import "ios/web_view/public/cwv_web_view.h"
6 6
7 #include <memory> 7 #include <memory>
8 #include <utility> 8 #include <utility>
9 9
10 #import "base/ios/weak_nsobject.h" 10 #import "base/ios/weak_nsobject.h"
11 #include "base/memory/ptr_util.h" 11 #include "base/memory/ptr_util.h"
12 #include "base/strings/sys_string_conversions.h" 12 #include "base/strings/sys_string_conversions.h"
13 #import "ios/web/public/navigation_manager.h" 13 #import "ios/web/public/navigation_manager.h"
14 #include "ios/web/public/referrer.h" 14 #include "ios/web/public/referrer.h"
15 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h" 15 #import "ios/web/public/web_state/js/crw_js_injection_receiver.h"
16 #import "ios/web/public/web_state/ui/crw_web_delegate.h" 16 #import "ios/web/public/web_state/ui/crw_web_delegate.h"
17 #import "ios/web/public/web_state/web_state.h" 17 #import "ios/web/public/web_state/web_state.h"
18 #import "ios/web/public/web_state/web_state_delegate_bridge.h" 18 #import "ios/web/public/web_state/web_state_delegate_bridge.h"
19 #import "ios/web/public/web_state/web_state_observer_bridge.h" 19 #import "ios/web/public/web_state/web_state_observer_bridge.h"
20 #include "ios/web_view/internal/criwv_browser_state.h"
21 #import "ios/web_view/internal/cwv_website_data_store_internal.h" 20 #import "ios/web_view/internal/cwv_website_data_store_internal.h"
22 #import "ios/web_view/internal/translate/criwv_translate_client.h" 21 #import "ios/web_view/internal/translate/criwv_translate_client.h"
22 #include "ios/web_view/internal/web_view_browser_state.h"
23 #import "ios/web_view/public/cwv_web_view_configuration.h" 23 #import "ios/web_view/public/cwv_web_view_configuration.h"
24 #import "ios/web_view/public/cwv_web_view_delegate.h" 24 #import "ios/web_view/public/cwv_web_view_delegate.h"
25 #import "ios/web_view/public/cwv_website_data_store.h" 25 #import "ios/web_view/public/cwv_website_data_store.h"
26 #import "net/base/mac/url_conversions.h" 26 #import "net/base/mac/url_conversions.h"
27 #include "ui/base/page_transition_types.h" 27 #include "ui/base/page_transition_types.h"
28 #include "url/gurl.h" 28 #include "url/gurl.h"
29 29
30 #if !defined(__has_feature) || !__has_feature(objc_arc) 30 #if !defined(__has_feature) || !__has_feature(objc_arc)
31 #error "This file requires ARC support." 31 #error "This file requires ARC support."
32 #endif 32 #endif
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 loadSuccess:success]; 179 loadSuccess:success];
180 } 180 }
181 } 181 }
182 182
183 - (void)webState:(web::WebState*)webState 183 - (void)webState:(web::WebState*)webState
184 didChangeLoadingProgress:(double)progress { 184 didChangeLoadingProgress:(double)progress {
185 [self notifyDidUpdateWithChanges:CRIWVWebViewUpdateTypeProgress]; 185 [self notifyDidUpdateWithChanges:CRIWVWebViewUpdateTypeProgress];
186 } 186 }
187 187
188 @end 188 @end
OLDNEW
« no previous file with comments | « ios/web_view/internal/cwv.mm ('k') | ios/web_view/internal/cwv_website_data_store.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698