| Index: ios/web_view/internal/criwv_web_main_parts.h
|
| diff --git a/ios/web_view/internal/criwv_web_main_parts.h b/ios/web_view/internal/criwv_web_main_parts.h
|
| index 14821cc0aecc4b782d879c01a3939b4504f60814..18885e263e5dd4a756e3731eef7f64b5959e95dc 100644
|
| --- a/ios/web_view/internal/criwv_web_main_parts.h
|
| +++ b/ios/web_view/internal/criwv_web_main_parts.h
|
| @@ -9,7 +9,7 @@
|
|
|
| #include <memory>
|
|
|
| -@protocol CRIWVDelegate;
|
| +@protocol CWVDelegate;
|
|
|
| namespace ios_web_view {
|
| class CRIWVBrowserState;
|
| @@ -17,7 +17,7 @@ class CRIWVBrowserState;
|
| // CRIWV-specific implementation of WebMainParts.
|
| class CRIWVWebMainParts : public web::WebMainParts {
|
| public:
|
| - explicit CRIWVWebMainParts(id<CRIWVDelegate> delegate);
|
| + explicit CRIWVWebMainParts(id<CWVDelegate> delegate);
|
| ~CRIWVWebMainParts() override;
|
|
|
| // WebMainParts implementation.
|
| @@ -33,7 +33,7 @@ class CRIWVWebMainParts : public web::WebMainParts {
|
|
|
| private:
|
| // This object's delegate.
|
| - __weak id<CRIWVDelegate> delegate_;
|
| + __weak id<CWVDelegate> delegate_;
|
|
|
| // The BrowserState for this embedder.
|
| std::unique_ptr<CRIWVBrowserState> browser_state_;
|
|
|