Searched refs:isUserGesture (Results 1 – 11 of 11) sorted by relevance
/external/webkit/Source/WebCore/html/ |
D | HTMLVideoElement.h | 48 void webkitEnterFullscreen(bool isUserGesture, ExceptionCode&); 55 …void webkitEnterFullScreen(bool isUserGesture, ExceptionCode& ec) { webkitEnterFullscreen(isUserGe… in webkitEnterFullScreen() argument
|
D | HTMLMediaElement.h | 98 void load(bool isUserGesture, ExceptionCode&); 125 void play(bool isUserGesture); 126 void pause(bool isUserGesture);
|
D | HTMLVideoElement.cpp | 233 void HTMLVideoElement::webkitEnterFullscreen(bool isUserGesture, ExceptionCode& ec) in webkitEnterFullscreen() argument 240 if ((requireUserGestureForFullScreen() && !isUserGesture) || !supportsFullscreen()) { in webkitEnterFullscreen()
|
D | HTMLMediaElement.cpp | 510 void HTMLMediaElement::load(bool isUserGesture, ExceptionCode& ec) in load() argument 512 LOG(Media, "HTMLMediaElement::load(isUserGesture : %s)", boolString(isUserGesture)); in load() 514 if (m_restrictions & RequireUserGestureForLoadRestriction && !isUserGesture) in load() 517 m_loadInitiatedByUserGesture = isUserGesture; in load() 1416 void HTMLMediaElement::play(bool isUserGesture) in play() argument 1418 LOG(Media, "HTMLMediaElement::play(isUserGesture : %s)", boolString(isUserGesture)); in play() 1420 if (m_restrictions & RequireUserGestureForRateChangeRestriction && !isUserGesture) in play() 1428 ASSERT(!isUserGesture); in play() 1465 void HTMLMediaElement::pause(bool isUserGesture) in pause() argument 1467 LOG(Media, "HTMLMediaElement::pause(isUserGesture : %s)", boolString(isUserGesture)); in pause() [all …]
|
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/ |
D | WebKitDOMTestObj.h | 95 …with_dynamic_frame_and_user_gesture(WebKitDOMTestObj* self, glong int_arg, gboolean isUserGesture); 98 …er_gesture_asad(WebKitDOMTestObj* self, glong int_arg, glong optional_arg, gboolean isUserGesture);
|
D | WebKitDOMTestObj.cpp | 281 …_with_dynamic_frame_and_user_gesture(WebKitDOMTestObj* self, glong int_arg, gboolean isUserGesture) in webkit_dom_test_obj_with_dynamic_frame_and_user_gesture() argument 290 …ser_gesture_asad(WebKitDOMTestObj* self, glong int_arg, glong optional_arg, gboolean isUserGesture) in webkit_dom_test_obj_with_dynamic_frame_and_user_gesture_asad() argument
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
D | ChromeClientAndroid.cpp | 139 bool isUserGesture = UserGestureIndicator::processingUserGesture(); in focus() local 142 if (isUserGesture) in focus()
|
/external/webkit/Tools/DumpRenderTree/mac/ |
D | FrameLoadDelegate.mm | 96 BOOL isUserGesture = [[self webView] _isProcessingUserGesture]; 97 …return [NSString stringWithFormat:@"Frame with user gesture \"%@\"", isUserGesture ? @"true" : @"f…
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | WebViewHost.cpp | 1425 bool isUserGesture = webframe->isProcessingUserGesture(); in printFrameUserGestureStatus() local 1426 printf("Frame with user gesture \"%s\"%s", isUserGesture ? "true" : "false", msg); in printFrameUserGestureStatus()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebCoreFrameBridge.cpp | 486 bool isUserGesture = UserGestureIndicator::processingUserGesture(); in startLoadingResource() local 491 cacheMode, mainResource, isUserGesture, in startLoadingResource()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2007-10-14 | 44057 (WebCore::FrameLoadRequest::isUserGesture): Added.
|