Home | History | Annotate | Download | only in UIProcess

Lines Matching refs:ValidateCommandCallback

113 // FIXME: Make a version of CallbackBase with three arguments, and define ValidateCommandCallback as a specialization.
114 class ValidateCommandCallback : public CallbackBase {
118 static PassRefPtr<ValidateCommandCallback> create(void* context, CallbackFunction callback)
120 return adoptRef(new ValidateCommandCallback(context, callback));
123 virtual ~ValidateCommandCallback()
149 ValidateCommandCallback(void* context, CallbackFunction callback)
248 void validateCommand(const String& commandName, PassRefPtr<ValidateCommandCallback>);
672 void validateCommandCallback(const String&, bool, int, uint64_t);
742 HashMap<uint64_t, RefPtr<ValidateCommandCallback> > m_validateCommandCallbacks;