* UIProcess/mac/WebInspectorProxyMac.mm:
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@177619
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2014-12-19 Jessie Berlin <jberlin@webkit.org>
+
+ Build fix.
+
+ * UIProcess/mac/WebInspectorProxyMac.mm:
+
2014-12-19 Jessie Berlin <jberlin@webkit.org>
Simplify the build fixes from r177615 and r177617.
2014-12-19 Jessie Berlin <jberlin@webkit.org>
Simplify the build fixes from r177615 and r177617.
-@interface WKWebInspectorWKView : WKView
+@interface WKWebInspectorWKView : WKView {
+@private
+ WKWebInspectorProxyObjCAdapter *_inspectorProxyObjCAdapter;
+}
+
@property (nonatomic, assign) WKWebInspectorProxyObjCAdapter *inspectorProxyObjCAdapter;
@end
@implementation WKWebInspectorWKView
@property (nonatomic, assign) WKWebInspectorProxyObjCAdapter *inspectorProxyObjCAdapter;
@end
@implementation WKWebInspectorWKView
-@synthesize inspectorProxyObjCAdapter;
+@synthesize inspectorProxyObjCAdapter = _inspectorProxyObjCAdapter;