Index: ios/web_view/internal/criwv_web_main_delegate.h |
diff --git a/ios/web_view/internal/criwv_web_main_delegate.h b/ios/web_view/internal/criwv_web_main_delegate.h |
index 929a2e417007ea144544c13a9ee6d5f742afed96..cc387961b78dc2c2920bb56944eb07f3f07da8ce 100644 |
--- a/ios/web_view/internal/criwv_web_main_delegate.h |
+++ b/ios/web_view/internal/criwv_web_main_delegate.h |
@@ -9,7 +9,7 @@ |
#include "base/macros.h" |
#include "ios/web/public/app/web_main_delegate.h" |
-@protocol CRIWVDelegate; |
+@protocol CWVDelegate; |
namespace ios_web_view { |
class CRIWVWebClient; |
@@ -17,7 +17,7 @@ class CRIWVWebClient; |
// CRIWV-specific implementation of WebMainDelegate. |
class CRIWVWebMainDelegate : public web::WebMainDelegate { |
public: |
- explicit CRIWVWebMainDelegate(id<CRIWVDelegate> delegate); |
+ explicit CRIWVWebMainDelegate(id<CWVDelegate> delegate); |
~CRIWVWebMainDelegate() override; |
// WebMainDelegate implementation. |
@@ -25,7 +25,7 @@ class CRIWVWebMainDelegate : public web::WebMainDelegate { |
private: |
// This object's delegate. |
- __weak id<CRIWVDelegate> delegate_; |
+ __weak id<CWVDelegate> delegate_; |
// The content and web clients registered by this object. |
std::unique_ptr<CRIWVWebClient> web_client_; |