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

Unified Diff: ios/web_view/internal/criwv_web_main_parts.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_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_;

Powered by Google App Engine
This is Rietveld 408576698