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

Unified Diff: Source/WebCore/testing/Internals.cpp

Issue 13818029: Remove TiledBacking / TileCache code (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/testing/Internals.h ('k') | Source/WebCore/testing/Internals.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/testing/Internals.cpp
diff --git a/Source/WebCore/testing/Internals.cpp b/Source/WebCore/testing/Internals.cpp
index 2b963990445d96b3da1909e20b5da0642fa84519..0ea76abfb57caf790f7f5232b8725a5900be46a1 100644
--- a/Source/WebCore/testing/Internals.cpp
+++ b/Source/WebCore/testing/Internals.cpp
@@ -1184,17 +1184,6 @@ String Internals::rangeAsText(const Range* range, ExceptionCode& ec)
return range->text();
}
-void Internals::setDelegatesScrolling(bool enabled, Document* document, ExceptionCode& ec)
-{
- // Delegate scrolling is valid only on mainframe's view.
- if (!document || !document->view() || !document->page() || document->page()->mainFrame() != document->frame()) {
- ec = INVALID_ACCESS_ERR;
- return;
- }
-
- document->view()->setDelegatesScrolling(enabled);
-}
-
#if ENABLE(TOUCH_ADJUSTMENT)
PassRefPtr<DOMPoint> Internals::touchPositionAdjustedToBestClickableNode(long x, long y, long width, long height, Document* document, ExceptionCode& ec)
{
« no previous file with comments | « Source/WebCore/testing/Internals.h ('k') | Source/WebCore/testing/Internals.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698