Chromium Code Reviews| Index: ios/web_view/internal/cwv_web_client.h |
| diff --git a/ios/web_view/internal/criwv_web_client.h b/ios/web_view/internal/cwv_web_client.h |
| similarity index 76% |
| rename from ios/web_view/internal/criwv_web_client.h |
| rename to ios/web_view/internal/cwv_web_client.h |
| index 09c236c165e4540e019fed70e105fce2b90ccd7d..461b01c4d98d9e69e026ba94d7d31b4c71dead64 100644 |
| --- a/ios/web_view/internal/criwv_web_client.h |
| +++ b/ios/web_view/internal/cwv_web_client.h |
| @@ -2,8 +2,8 @@ |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| -#ifndef IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_ |
| -#define IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_ |
| +#ifndef IOS_WEB_VIEW_INTERNAL_CWV_WEB_CLIENT_H_ |
| +#define IOS_WEB_VIEW_INTERNAL_CWV_WEB_CLIENT_H_ |
| #include <memory> |
| #include "base/compiler_specific.h" |
| @@ -17,10 +17,10 @@ class CRIWVWebMainParts; |
| // CWV-specific implementation of WebClient. Delegates some functionality to |
| // CWVDelegate. |
| -class CRIWVWebClient : public web::WebClient { |
| +class CWVWebClient : public web::WebClient { |
|
Eugene But (OOO till 7-30)
2017/02/24 19:44:02
Per comments from the previous CL, 3 letter prefix
|
| public: |
| - explicit CRIWVWebClient(id<CWVDelegate> delegate); |
| - ~CRIWVWebClient() override; |
| + explicit CWVWebClient(id<CWVDelegate> delegate); |
| + ~CWVWebClient() override; |
| // WebClient implementation. |
| web::WebMainParts* CreateWebMainParts() override; |
| @@ -39,9 +39,9 @@ class CRIWVWebClient : public web::WebClient { |
| // The WebMainParts created by |CreateWebMainParts()|. |
| CRIWVWebMainParts* web_main_parts_; |
| - DISALLOW_COPY_AND_ASSIGN(CRIWVWebClient); |
| + DISALLOW_COPY_AND_ASSIGN(CWVWebClient); |
| }; |
| } // namespace ios_web_view |
| -#endif // IOS_WEB_VIEW_INTERNAL_CRIWV_WEB_CLIENT_H_ |
| +#endif // IOS_WEB_VIEW_INTERNAL_CWV_WEB_CLIENT_H_ |