Searched refs:isUserGesture (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLVideoElement.h48 void webkitEnterFullscreen(bool isUserGesture, ExceptionCode&);
55 void webkitEnterFullScreen(bool isUserGesture, ExceptionCode& ec) { webkitEnterFullscreen(isUserGesture, ec); } argument
H A DHTMLVideoElement.cpp233 void HTMLVideoElement::webkitEnterFullscreen(bool isUserGesture, ExceptionCode& ec) argument
240 if ((requireUserGestureForFullScreen() && !isUserGesture) || !supportsFullscreen()) {
H A DHTMLMediaElement.h98 void load(bool isUserGesture, ExceptionCode&);
125 void play(bool isUserGesture);
126 void pause(bool isUserGesture);
H A DHTMLMediaElement.cpp511 void HTMLMediaElement::load(bool isUserGesture, ExceptionCode& ec) argument
513 LOG(Media, "HTMLMediaElement::load(isUserGesture : %s)", boolString(isUserGesture));
515 if (m_restrictions & RequireUserGestureForLoadRestriction && !isUserGesture)
518 m_loadInitiatedByUserGesture = isUserGesture;
520 m_userGestureInitiated |= isUserGesture;
1423 void HTMLMediaElement::play(bool isUserGesture) argument
1425 LOG(Media, "HTMLMediaElement::play(isUserGesture : %s)", boolString(isUserGesture));
1427 if (m_restrictions & RequireUserGestureForRateChangeRestriction && !isUserGesture
1482 pause(bool isUserGesture) argument
[all...]
/external/webkit/Source/WebCore/bindings/scripts/test/GObject/
H A DWebKitDOMTestObj.h95 webkit_dom_test_obj_with_dynamic_frame_and_user_gesture(WebKitDOMTestObj* self, glong int_arg, gboolean isUserGesture);
98 webkit_dom_test_obj_with_dynamic_frame_and_user_gesture_asad(WebKitDOMTestObj* self, glong int_arg, glong optional_arg, gboolean isUserGesture);
H A DWebKitDOMTestObj.cpp281 webkit_dom_test_obj_with_dynamic_frame_and_user_gesture(WebKitDOMTestObj* self, glong int_arg, gboolean isUserGesture) argument
290 webkit_dom_test_obj_with_dynamic_frame_and_user_gesture_asad(WebKitDOMTestObj* self, glong int_arg, glong optional_arg, gboolean isUserGesture) argument
/external/webkit/Tools/DumpRenderTree/mac/
H A DFrameLoadDelegate.mm96 BOOL isUserGesture = [[self webView] _isProcessingUserGesture];
97 return [NSString stringWithFormat:@"Frame with user gesture \"%@\"", isUserGesture ? @"true" : @"false"];
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DChromeClientAndroid.cpp156 bool isUserGesture = UserGestureIndicator::processingUserGesture(); local
159 if (isUserGesture)
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp1425 bool isUserGesture = webframe->isProcessingUserGesture(); local
1426 printf("Frame with user gesture \"%s\"%s", isUserGesture ? "true" : "false", msg);

Completed in 148 milliseconds