Changeset 31316 for trunk/WebCore/loader/TextResourceDecoder.h
- Timestamp:
- 03/26/08 10:19:07 (8 months ago)
- Files:
-
- 1 modified
-
trunk/WebCore/loader/TextResourceDecoder.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/WebCore/loader/TextResourceDecoder.h
r27776 r31316 53 53 String decode(const char* data, size_t length); 54 54 String flush(); 55 56 bool sawError() const { return m_sawError; } 55 57 56 58 private: … … 71 73 bool m_checkedForCSSCharset; 72 74 bool m_checkedForHeadCharset; 75 bool m_sawError; 73 76 }; 74 77