Searched refs:isUserGesture (Results 1 – 10 of 10) 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 | 511 void HTMLMediaElement::load(bool isUserGesture, ExceptionCode& ec) in load() argument 513 LOG(Media, "HTMLMediaElement::load(isUserGesture : %s)", boolString(isUserGesture)); in load() 515 if (m_restrictions & RequireUserGestureForLoadRestriction && !isUserGesture) in load() 518 m_loadInitiatedByUserGesture = isUserGesture; in load() 520 m_userGestureInitiated |= isUserGesture; in load() 1423 void HTMLMediaElement::play(bool isUserGesture) in play() argument 1425 LOG(Media, "HTMLMediaElement::play(isUserGesture : %s)", boolString(isUserGesture)); in play() 1427 if (m_restrictions & RequireUserGestureForRateChangeRestriction && !isUserGesture in play() 1445 ASSERT(!isUserGesture); in play() 1482 void HTMLMediaElement::pause(bool isUserGesture) in pause() argument [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 | 156 bool isUserGesture = UserGestureIndicator::processingUserGesture(); in focus() local 159 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/WebCore/ |
D | ChangeLog-2007-10-14 | 44057 (WebCore::FrameLoadRequest::isUserGesture): Added.
|