Home
last modified time | relevance | path

Searched refs:isUserGesture (Results 1 – 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/html/
DHTMLVideoElement.h48 void webkitEnterFullscreen(bool isUserGesture, ExceptionCode&);
55 …void webkitEnterFullScreen(bool isUserGesture, ExceptionCode& ec) { webkitEnterFullscreen(isUserGe… in webkitEnterFullScreen() argument
DHTMLMediaElement.h98 void load(bool isUserGesture, ExceptionCode&);
125 void play(bool isUserGesture);
126 void pause(bool isUserGesture);
DHTMLVideoElement.cpp233 void HTMLVideoElement::webkitEnterFullscreen(bool isUserGesture, ExceptionCode& ec) in webkitEnterFullscreen() argument
240 if ((requireUserGestureForFullScreen() && !isUserGesture) || !supportsFullscreen()) { in webkitEnterFullscreen()
DHTMLMediaElement.cpp511 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/
DWebKitDOMTestObj.h95 …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);
DWebKitDOMTestObj.cpp281 …_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/
DChromeClientAndroid.cpp156 bool isUserGesture = UserGestureIndicator::processingUserGesture(); in focus() local
159 if (isUserGesture) in focus()
/external/webkit/Tools/DumpRenderTree/mac/
DFrameLoadDelegate.mm96 BOOL isUserGesture = [[self webView] _isProcessingUserGesture];
97 …return [NSString stringWithFormat:@"Frame with user gesture \"%@\"", isUserGesture ? @"true" : @"f…
/external/webkit/Tools/DumpRenderTree/chromium/
DWebViewHost.cpp1425 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/
DChangeLog-2007-10-1444057 (WebCore::FrameLoadRequest::isUserGesture): Added.