summaryrefslogtreecommitdiffstats
path: root/WebCore/loader/CachedScript.h
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/loader/CachedScript.h')
-rw-r--r--WebCore/loader/CachedScript.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/WebCore/loader/CachedScript.h b/WebCore/loader/CachedScript.h
index 1715e06..e1c3ee0 100644
--- a/WebCore/loader/CachedScript.h
+++ b/WebCore/loader/CachedScript.h
@@ -27,12 +27,12 @@
#define CachedScript_h
#include "CachedResource.h"
-#include "TextEncoding.h"
#include "Timer.h"
namespace WebCore {
class DocLoader;
+ class TextResourceDecoder;
class CachedScript : public CachedResource {
public:
@@ -59,7 +59,7 @@ namespace WebCore {
void decodedDataDeletionTimerFired(Timer<CachedScript>*);
String m_script;
- TextEncoding m_encoding;
+ RefPtr<TextResourceDecoder> m_decoder;
Timer<CachedScript> m_decodedDataDeletionTimer;
};
}