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

Unified Diff: ios/web_view/internal/criwv_web_main_delegate.h

Issue 2691883003: Rename ios/web_view public delegates from CRIWV to CWV prefix. (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/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_;

Powered by Google App Engine
This is Rietveld 408576698