HomeSort by relevance Sort by last modified time
    Searched refs:processingUserGesture (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/Source/WebCore/bindings/v8/specialization/
V8BindingState.h 58 bool processingUserGesture();
V8BindingState.cpp 87 bool State<V8Binding>::processingUserGesture()
89 return ScriptController::processingUserGesture();
  /external/webkit/Source/WebCore/dom/
UserGestureIndicator.h 42 static bool processingUserGesture() { return s_processingUserGesture == DefinitelyProcessingUserGesture; }
Event.cpp 248 if (!UserGestureIndicator::processingUserGesture())
  /external/webkit/Source/WebCore/bindings/v8/
V8Utilities.cpp 97 bool processingUserGesture()
99 return V8BindingState::Only()->processingUserGesture();
ScriptController.cpp 157 bool ScriptController::processingUserGesture()
182 // Based on code from JSC's ScriptController::processingUserGesture.
185 // Event::fromUserGesture will return false when UserGestureIndicator::processingUserGesture() returns false.
199 // Based on JSC version, use returned value of UserGestureIndicator::processingUserGesture for all other situations.
200 return UserGestureIndicator::processingUserGesture();
206 return ScriptController::processingUserGesture();
ScriptController.h 156 static bool processingUserGesture();
V8Utilities.h 52 bool processingUserGesture();
  /external/webkit/Source/WebCore/loader/
NavigationScheduler.cpp 65 , m_wasUserGesture(ScriptController::processingUserGesture())
296 if (!ScriptController::processingUserGesture() && targetFrame->loader()->documentLoader() && !targetFrame->loader()->documentLoader()->wasOnloadHandled())
352 && m_frame->tree()->parent() && !ScriptController::processingUserGesture());
  /external/webkit/Source/WebCore/bindings/generic/
BindingSecurity.h 119 if (state->processingUserGesture())
  /external/webkit/Source/WebCore/html/
HTMLFormElement.h 135 void submit(Event*, bool activateSubmitButton, bool processingUserGesture, FormSubmissionTrigger);
HTMLFormElement.cpp 302 void HTMLFormElement::submit(Event* event, bool activateSubmitButton, bool processingUserGesture, FormSubmissionTrigger formSubmissionTrigger)
315 m_wasUserSubmitted = processingUserGesture;
336 frame->loader()->submitForm(FormSubmission::create(this, m_attributes, event, !processingUserGesture, formSubmissionTrigger));
HTMLMediaElement.h 177 bool processingUserGesture() const;
HTMLMediaElement.cpp 374 pause(processingUserGesture());
    [all...]
  /external/webkit/Source/WebCore/page/
DOMTimer.cpp 60 return UserGestureIndicator::processingUserGesture()
  /external/webkit/Source/WebCore/bindings/js/
ScriptController.h 112 static bool processingUserGesture();
JSDOMBinding.cpp 419 bool processingUserGesture()
421 return ScriptController::processingUserGesture();
ScriptController.cpp 240 bool ScriptController::processingUserGesture()
263 return UserGestureIndicator::processingUserGesture();
JSDOMBinding.h 295 bool processingUserGesture();
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
FullscreenVideoController.cpp 371 m_mediaElement->play(m_mediaElement->processingUserGesture());
380 m_mediaElement->pause(m_mediaElement->processingUserGesture());
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.cpp 156 bool isUserGesture = UserGestureIndicator::processingUserGesture();
202 ScriptController::processingUserGesture());
  /external/webkit/Source/WebKit/win/
FullscreenVideoController.cpp 327 m_mediaElement->play(m_mediaElement->processingUserGesture());
333 m_mediaElement->pause(m_mediaElement->processingUserGesture());
  /external/webkit/Source/WebKit/mac/WebView/
WebVideoFullscreenHUDWindowController.mm 586 mediaElement->play(mediaElement->processingUserGesture());
588 mediaElement->pause(mediaElement->processingUserGesture());
  /external/webkit/Source/WebCore/bindings/scripts/test/V8/
V8TestObj.cpp     [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp     [all...]

Completed in 443 milliseconds

1 2