Home | History | Annotate | Download | only in WebKitLauncher

Lines Matching refs:selector

48     NSString *hostName = objc_msgSend(host, @selector(name));
49 NSPanel *panel = NSGetInformationalAlertPanel([NSString stringWithFormat:@"Would you like to download and install %@ %@ now?", hostName, objc_msgSend(updateItem, @selector(displayVersionString))],
50 [NSString stringWithFormat:@"You are currently running %@ %@.", hostName, objc_msgSend(host, @selector(displayVersion))],
60 [button setAction:@selector(webKitHandleButtonPress:)];
95 // to map the button tag to the corresponding selector
96 SEL selectors[] = { @selector(remindMeLater:), @selector(skipThisVersion:), @selector(installUpdate:) };
97 SEL selector = selectors[[sender tag] + 1];
100 objc_msgSend(delegate, selector, sender);
126 return objc_msgSend(WebView, @selector(_standardUserAgentWithApplicationName:), applicationName);
132 Method methodToPatch = class_getInstanceMethod(objc_getRequiredClass("SUUpdatePermissionPrompt"), @selector(promptDescription));
135 methodToPatch = class_getInstanceMethod(objc_getRequiredClass("SUUpdateAlert"), @selector(initWithAppcastItem:host:));
150 NSMenuItem *updateMenuItem = [[NSMenuItem alloc] initWithTitle:@"Check for WebKit Updates?" action:@selector(checkForUpdates:) keyEquivalent:@""];