Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Side by Side Diff: third_party/WebKit/Source/core/page/ChromeClient.h

Issue 2740133002: Mark sub-frame root layer non-fast scrollable when wheel handlers present. (Closed)
Patch Set: Add mainframe version of test for verification. Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights 2 * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011, 2012 Apple, Inc. All rights
3 * reserved. 3 * reserved.
4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies). 4 * Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
5 * Copyright (C) 2012 Samsung Electronics. All rights reserved. 5 * Copyright (C) 2012 Samsung Electronics. All rights reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 247 matching lines...) Expand 10 before | Expand all | Expand 10 after
258 virtual void clearCompositedSelection(LocalFrame*) {} 258 virtual void clearCompositedSelection(LocalFrame*) {}
259 virtual void updateCompositedSelection(LocalFrame*, 259 virtual void updateCompositedSelection(LocalFrame*,
260 const CompositedSelection&) {} 260 const CompositedSelection&) {}
261 261
262 virtual void setEventListenerProperties(LocalFrame*, 262 virtual void setEventListenerProperties(LocalFrame*,
263 WebEventListenerClass, 263 WebEventListenerClass,
264 WebEventListenerProperties) = 0; 264 WebEventListenerProperties) = 0;
265 virtual WebEventListenerProperties eventListenerProperties( 265 virtual WebEventListenerProperties eventListenerProperties(
266 LocalFrame*, 266 LocalFrame*,
267 WebEventListenerClass) const = 0; 267 WebEventListenerClass) const = 0;
268 virtual void updateTouchRectsForSubframeIfNecessary(LocalFrame*) = 0; 268 virtual void updateEventRectsForSubframeIfNecessary(LocalFrame*) = 0;
269 virtual void setHasScrollEventHandlers(LocalFrame*, bool) = 0; 269 virtual void setHasScrollEventHandlers(LocalFrame*, bool) = 0;
270 270
271 virtual void setTouchAction(LocalFrame*, TouchAction) = 0; 271 virtual void setTouchAction(LocalFrame*, TouchAction) = 0;
272 272
273 // Checks if there is an opened popup, called by LayoutMenuList::showPopup(). 273 // Checks if there is an opened popup, called by LayoutMenuList::showPopup().
274 virtual bool hasOpenedPopup() const = 0; 274 virtual bool hasOpenedPopup() const = 0;
275 virtual PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) = 0; 275 virtual PopupMenu* openPopupMenu(LocalFrame&, HTMLSelectElement&) = 0;
276 virtual DOMWindow* pagePopupWindowForTesting() const = 0; 276 virtual DOMWindow* pagePopupWindowForTesting() const = 0;
277 277
278 virtual void postAccessibilityNotification(AXObject*, 278 virtual void postAccessibilityNotification(AXObject*,
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
375 WeakMember<Node> m_lastMouseOverNode; 375 WeakMember<Node> m_lastMouseOverNode;
376 LayoutPoint m_lastToolTipPoint; 376 LayoutPoint m_lastToolTipPoint;
377 String m_lastToolTipText; 377 String m_lastToolTipText;
378 378
379 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood); 379 FRIEND_TEST_ALL_PREFIXES(ChromeClientTest, SetToolTipFlood);
380 }; 380 };
381 381
382 } // namespace blink 382 } // namespace blink
383 383
384 #endif // ChromeClient_h 384 #endif // ChromeClient_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/loader/EmptyClients.h ('k') | third_party/WebKit/Source/web/ChromeClientImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698