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

Side by Side Diff: ios/web_view/internal/cwv_user_content_controller_internal.h

Issue 2764773002: Add CWVUserContentController which enables injecting JavaScripts. (Closed)
Patch Set: Add license. Created 3 years, 9 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 unified diff | Download patch
OLDNEW
(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_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698