Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
|
michaeldo
2017/03/21 16:12:34
please add empty line after license, before header
Hiroshi Ichikawa
2017/03/22 04:52:52
Done.
| |
| 4 #ifndef IOS_WEB_VIEW_PUBLIC_CWV_USER_CONTENT_CONTROLLER_INTERNAL_H_ | |
|
michaeldo
2017/03/21 16:12:34
s/PUBLIC/INTERNAL
IOS_WEB_VIEW_INTERNAL_CWV_USER_
Hiroshi Ichikawa
2017/03/22 04:52:52
Oops. Done.
| |
| 5 #define IOS_WEB_VIEW_PUBLIC_CWV_USER_CONTENT_CONTROLLER_INTERNAL_H_ | |
| 6 | |
| 7 #import "ios/web_view/public/cwv_user_content_controller.h" | |
| 8 | |
| 9 @class CWVWebViewConfiguration; | |
| 10 | |
| 11 @interface CWVUserContentController () | |
| 12 | |
| 13 - (instancetype)initWithConfiguration: | |
| 14 (__weak CWVWebViewConfiguration*)configuration; | |
|
Eugene But (OOO till 7-30)
2017/03/21 16:47:55
Do you want to specify that |configuration| is non
Hiroshi Ichikawa
2017/03/22 04:52:52
Done. Added nonnull/nullable for other pointers in
michaeldo
2017/03/22 23:03:32
Thanks for adding these, based on other classes, l
Hiroshi Ichikawa
2017/03/23 02:48:05
Good to know, thanks. Done.
| |
| 15 | |
| 16 @end | |
| 17 | |
| 18 #endif // IOS_WEB_VIEW_PUBLIC_CWV_USER_CONTENT_CONTROLLER_INTERNAL_H_ | |
| OLD | NEW |