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

Unified Diff: Source/WebCore/page/Frame.h

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/page/ChromeClient.h ('k') | Source/WebCore/page/Frame.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/page/Frame.h
diff --git a/Source/WebCore/page/Frame.h b/Source/WebCore/page/Frame.h
index eedceeaa4b82672d805fbca99a7265f1b9e428b3..bf11ed005eba9a0d5f971f2a067598f185511aa7 100644
--- a/Source/WebCore/page/Frame.h
+++ b/Source/WebCore/page/Frame.h
@@ -40,10 +40,6 @@
#include "ScriptController.h"
#include "UserScriptTypes.h"
-#if USE(TILED_BACKING_STORE)
-#include "TiledBackingStoreClient.h"
-#endif
-
namespace WebCore {
class Document;
@@ -52,11 +48,6 @@ namespace WebCore {
class HTMLTableCellElement;
class RegularExpression;
class RenderPart;
- class TiledBackingStore;
-
-#if !USE(TILED_BACKING_STORE)
- class TiledBackingStoreClient { };
-#endif
class TreeScope;
@@ -69,7 +60,7 @@ namespace WebCore {
};
typedef unsigned LayerTreeFlags;
- class Frame : public RefCounted<Frame>, public TiledBackingStoreClient {
+ class Frame : public RefCounted<Frame> {
public:
static PassRefPtr<Frame> create(Page*, HTMLFrameOwnerElement*, FrameLoaderClient*);
@@ -212,25 +203,6 @@ namespace WebCore {
bool m_inViewSourceMode;
-#if USE(TILED_BACKING_STORE)
- // FIXME: The tiled backing store belongs in FrameView, not Frame.
-
- public:
- TiledBackingStore* tiledBackingStore() const { return m_tiledBackingStore.get(); }
- void setTiledBackingStoreEnabled(bool);
-
- private:
- // TiledBackingStoreClient interface
- virtual void tiledBackingStorePaintBegin();
- virtual void tiledBackingStorePaint(GraphicsContext*, const IntRect&);
- virtual void tiledBackingStorePaintEnd(const Vector<IntRect>& paintedArea);
- virtual IntRect tiledBackingStoreContentsRect();
- virtual IntRect tiledBackingStoreVisibleRect();
- virtual Color tiledBackingStoreBackgroundColor() const;
-
- OwnPtr<TiledBackingStore> m_tiledBackingStore;
-#endif
-
int m_activeDOMObjectsAndAnimationsSuspendedCount;
};
« no previous file with comments | « Source/WebCore/page/ChromeClient.h ('k') | Source/WebCore/page/Frame.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698