[ReactNative][RFC] Bring Chrome debugger to OSS. Part 1

This commit is contained in:
Alex Kotliarskyi
2015-03-19 09:55:40 -07:00
parent 1289536fe1
commit 0de49ab0d5
6 changed files with 2115 additions and 1 deletions

View File

@@ -42,7 +42,10 @@ static Class _globalExecutorClass;
[[RCTKeyCommands sharedInstance] registerKeyCommandWithInput:@"d"
modifierFlags:UIKeyModifierCommand
action:^(UIKeyCommand *command) {
_globalExecutorClass = [RCTWebViewExecutor class];
_globalExecutorClass = NSClassFromString(@"RCTWebSocketExecutor");
if (!_globalExecutorClass) {
RCTLogWarn(@"WebSocket debugger is not available. Did you forget to include RCTWebSocketExecutor?");
}
[self reloadAll];
}];