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

Unified Diff: ios/web_view/internal/cwv_web_view.mm

Issue 2693793003: Rename CRIWVWebViewConfiguration to CWVWebViewConfiguration (Closed)
Patch Set: Created 3 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: ios/web_view/internal/cwv_web_view.mm
diff --git a/ios/web_view/internal/cwv_web_view.mm b/ios/web_view/internal/cwv_web_view.mm
index af3ef6c5058fd5dbb58b03c60df7c281e8a1475c..f9c9f8790897daae6ebdfab5848a252a5a18e600 100644
--- a/ios/web_view/internal/cwv_web_view.mm
+++ b/ios/web_view/internal/cwv_web_view.mm
@@ -20,8 +20,8 @@
#include "ios/web_view/internal/criwv_browser_state.h"
#import "ios/web_view/internal/cwv_website_data_store_internal.h"
#import "ios/web_view/internal/translate/criwv_translate_client.h"
-#import "ios/web_view/public/criwv_web_view_configuration.h"
#import "ios/web_view/public/criwv_web_view_delegate.h"
+#import "ios/web_view/public/cwv_web_view_configuration.h"
#import "ios/web_view/public/cwv_website_data_store.h"
#import "net/base/mac/url_conversions.h"
#include "ui/base/page_transition_types.h"
@@ -32,7 +32,7 @@
#endif
@interface CWVWebView ()<CRWWebStateDelegate, CRWWebStateObserver> {
- CRIWVWebViewConfiguration* _configuration;
+ CWVWebViewConfiguration* _configuration;
std::unique_ptr<web::WebState> _webState;
std::unique_ptr<web::WebStateDelegateBridge> _webStateDelegate;
std::unique_ptr<web::WebStateObserverBridge> _webStateObserver;
@@ -47,7 +47,7 @@
@synthesize loadProgress = _loadProgress;
- (instancetype)initWithFrame:(CGRect)frame
- configuration:(CRIWVWebViewConfiguration*)configuration {
+ configuration:(CWVWebViewConfiguration*)configuration {
self = [super initWithFrame:frame];
if (self) {
_configuration = [configuration copy];
« no previous file with comments | « ios/web_view/internal/criwv_web_view_configuration.mm ('k') | ios/web_view/internal/cwv_web_view_configuration.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698