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

1 2

  /external/chromium_org/third_party/WebKit/Source/web/
WebUserGestureIndicator.cpp 34 #include "platform/UserGestureIndicator.h"
43 return UserGestureIndicator::processingUserGesture();
48 return UserGestureIndicator::consumeUserGesture();
53 return WebUserGestureToken(UserGestureIndicator::currentToken());
WebScopedUserGesture.cpp 34 #include "platform/UserGestureIndicator.h"
41 m_indicator.reset(new WebCore::UserGestureIndicator(WebCore::DefinitelyProcessingNewUserGesture));
47 m_indicator.reset(new WebCore::UserGestureIndicator(token));
PopupContainer.cpp 47 #include "platform/UserGestureIndicator.h"
260 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
267 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
275 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
282 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
325 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
WebPluginContainerImpl.cpp 72 #include "platform/UserGestureIndicator.h"
452 UserGestureIndicator gestureIndicator(popupsAllowed ? DefinitelyProcessingNewUserGesture : PossiblyProcessingUserGesture);
479 UserGestureIndicator gestureIndicator(request.hasUserGesture() ? DefinitelyProcessingNewUserGesture : PossiblyProcessingUserGesture);
WebViewImpl.cpp 102 #include "platform/UserGestureIndicator.h"
245 // If a UserGestureIndicator is created for a user gesture during the
262 UserGestureIndicator::clearProcessedUserGestureInPast();
267 if (!*m_userGestureObserved && UserGestureIndicator::processedUserGestureInPast()) {
    [all...]
WebLocalFrameImpl.cpp 140 #include "platform/UserGestureIndicator.h"
791 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
UserGestureIndicator.h 36 class UserGestureIndicator;
61 UserGestureIndicator* m_savedIndicator;
64 class PLATFORM_EXPORT UserGestureIndicator {
65 WTF_MAKE_NONCOPYABLE(UserGestureIndicator);
74 explicit UserGestureIndicator(ProcessingUserGestureState);
75 explicit UserGestureIndicator(PassRefPtr<UserGestureToken>);
76 ~UserGestureIndicator();
81 static UserGestureIndicator* s_topmostIndicator;
UserGestureIndicator.cpp 27 #include "platform/UserGestureIndicator.h"
113 ProcessingUserGestureState UserGestureIndicator::s_state = DefinitelyNotProcessingUserGesture;
114 UserGestureIndicator* UserGestureIndicator::s_topmostIndicator = 0;
115 bool UserGestureIndicator::s_processedUserGestureInPast = false;
117 UserGestureIndicator::UserGestureIndicator(ProcessingUserGestureState state)
145 UserGestureIndicator::UserGestureIndicator(PassRefPtr<UserGestureToken> token)
170 UserGestureIndicator::~UserGestureIndicator(
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebScopedUserGesture.h 37 class UserGestureIndicator;
68 WebPrivateOwnPtr<WebCore::UserGestureIndicator> m_indicator;
  /external/chromium_org/third_party/WebKit/Source/web/tests/
WebUserGestureTokenTest.cpp 35 #include "platform/UserGestureIndicator.h"
49 UserGestureIndicator::clearProcessedUserGestureInPast();
50 EXPECT_FALSE(UserGestureIndicator::processedUserGestureInPast());
58 UserGestureIndicator indicator(DefinitelyProcessingNewUserGesture);
61 EXPECT_TRUE(UserGestureIndicator::processedUserGestureInPast());
81 EXPECT_TRUE(UserGestureIndicator::processedUserGestureInPast());
  /external/chromium_org/third_party/WebKit/Source/core/loader/
NavigationScheduler.cpp 49 #include "platform/UserGestureIndicator.h"
63 , m_wasUserGesture(UserGestureIndicator::processingUserGesture())
66 m_userGestureToken = UserGestureIndicator::currentToken();
77 PassOwnPtr<UserGestureIndicator> createUserGestureIndicator()
80 return adoptPtr(new UserGestureIndicator(m_userGestureToken));
81 return adoptPtr(new UserGestureIndicator(DefinitelyNotProcessingUserGesture));
109 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
138 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
163 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator();
181 OwnPtr<UserGestureIndicator> gestureIndicator = createUserGestureIndicator()
    [all...]
DocumentLoader.cpp 54 #include "platform/UserGestureIndicator.h"
323 if (!LocalDOMWindow::allowPopUp(*m_frame) && !UserGestureIndicator::processingUserGesture())
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMTimer.cpp 52 return UserGestureIndicator::processingUserGesture()
97 m_userGestureToken = UserGestureIndicator::currentToken();
123 UserGestureIndicator gestureIndicator(m_userGestureToken.release());
LocalDOMWindow.cpp 99 #include "platform/UserGestureIndicator.h"
308 if (UserGestureIndicator::processingUserGesture())
870 OwnPtr<PostMessageTimer> timer = adoptPtr(new PostMessageTimer(*this, message, sourceOrigin, source, channels.release(), target.get(), stackTrace.release(), UserGestureIndicator::currentToken()));
893 UserGestureIndicator gestureIndicator(timer->userGestureToken());
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
BaseChooserOnlyDateAndTimeInputType.cpp 36 #include "platform/UserGestureIndicator.h"
46 if (element().isDisabledOrReadOnly() || !element().renderer() || !UserGestureIndicator::processingUserGesture() || element().hasAuthorShadowRoot())
ColorInputType.cpp 48 #include "platform/UserGestureIndicator.h"
159 if (!UserGestureIndicator::processingUserGesture())
FileInputType.cpp 40 #include "platform/UserGestureIndicator.h"
149 if (!UserGestureIndicator::processingUserGesture())
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorFrontendHost.cpp 49 #include "platform/UserGestureIndicator.h"
91 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.cpp 121 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.cpp 56 #include "platform/UserGestureIndicator.h"
340 submit(0, false, UserGestureIndicator::processingUserGesture(), SubmittedByJavaScript);
424 if (!LocalDOMWindow::allowPopUp(*document().frame()) && !UserGestureIndicator::processingUserGesture())
477 else if (!UserGestureIndicator::processingUserGesture())
HTMLMediaElement.cpp 71 #include "platform/UserGestureIndicator.h"
687 if (UserGestureIndicator::processingUserGesture())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
FullscreenElementStack.cpp 43 #include "platform/UserGestureIndicator.h"
224 if (!UserGestureIndicator::processingUserGesture())
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXNodeObject.cpp 43 #include "platform/UserGestureIndicator.h"
    [all...]
AXObject.cpp 40 #include "platform/UserGestureIndicator.h"
637 UserGestureIndicator gestureIndicator(DefinitelyProcessingNewUserGesture);
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp     [all...]

Completed in 884 milliseconds

1 2