Changeset 235324 in webkit
- Timestamp:
- Aug 24, 2018, 12:10:19 PM (7 years ago)
- Location:
- trunk/Source/WebKit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebKit/ChangeLog
r235323 r235324 1 2018-08-24 Alex Christensen <achristensen@webkit.org> 2 3 Follow up to r235323 4 https://bugs.webkit.org/show_bug.cgi?id=188923 5 <rdar://problem/34657861> 6 7 * UIProcess/API/C/mac/WKInspectorPrivateMac.h: 8 * UIProcess/mac/WebInspectorProxyMac.mm: 9 (-[WKWebInspectorProxyObjCAdapter inspector]): 10 A _WKInspector * accessor in the WKWebInspectorProxyObjCAdapter is nice, too. 11 1 12 2018-08-24 Alex Christensen <achristensen@webkit.org> 2 13 -
trunk/Source/WebKit/UIProcess/API/C/mac/WKInspectorPrivateMac.h
r223771 r235324 32 32 #import <WebKit/WKInspector.h> 33 33 34 @class _WKInspector; 35 34 36 #ifdef __cplusplus 35 37 extern "C" { … … 43 45 44 46 @property (readonly) WKInspectorRef inspectorRef; 47 @property (readonly) _WKInspector *inspector; 45 48 46 49 @end -
trunk/Source/WebKit/UIProcess/mac/WebInspectorProxyMac.mm
r235265 r235324 37 37 #import "WebPageGroup.h" 38 38 #import "WebPageProxy.h" 39 #import "_WKInspectorInternal.h" 39 40 #import <WebCore/InspectorFrontendClientLocal.h> 40 41 #import <WebCore/LocalizedStrings.h> … … 64 65 { 65 66 return toAPI(_inspectorProxy); 67 } 68 69 - (_WKInspector *)inspector 70 { 71 if (_inspectorProxy) 72 return wrapper(*_inspectorProxy); 73 return nil; 66 74 } 67 75
Note:
See TracChangeset
for help on using the changeset viewer.