| Index: Source/core/xml/parser/XMLDocumentParserScope.h
|
| diff --git a/Source/core/xml/parser/XMLDocumentParserScope.h b/Source/core/xml/parser/XMLDocumentParserScope.h
|
| index 5ff80416e82ba257a2018ee9494ed5633232a646..4b06862c8b8df10d4c6b3f398acff4e52fa427b7 100644
|
| --- a/Source/core/xml/parser/XMLDocumentParserScope.h
|
| +++ b/Source/core/xml/parser/XMLDocumentParserScope.h
|
| @@ -33,23 +33,22 @@ namespace WebCore {
|
|
|
| class ResourceFetcher;
|
|
|
| - class XMLDocumentParserScope {
|
| - WTF_MAKE_NONCOPYABLE(XMLDocumentParserScope);
|
| - public:
|
| - explicit XMLDocumentParserScope(ResourceFetcher*);
|
| - ~XMLDocumentParserScope();
|
| -
|
| - static ResourceFetcher* currentFetcher;
|
| -
|
| - XMLDocumentParserScope(ResourceFetcher*, xmlGenericErrorFunc, xmlStructuredErrorFunc = 0, void* errorContext = 0);
|
| -
|
| - private:
|
| - ResourceFetcher* m_oldFetcher;
|
| -
|
| - xmlGenericErrorFunc m_oldGenericErrorFunc;
|
| - xmlStructuredErrorFunc m_oldStructuredErrorFunc;
|
| - void* m_oldErrorContext;
|
| - };
|
| +class XMLDocumentParserScope {
|
| + WTF_MAKE_NONCOPYABLE(XMLDocumentParserScope);
|
| +public:
|
| + explicit XMLDocumentParserScope(ResourceFetcher*);
|
| + XMLDocumentParserScope(ResourceFetcher*, xmlGenericErrorFunc, xmlStructuredErrorFunc = 0, void* errorContext = 0);
|
| + ~XMLDocumentParserScope();
|
| +
|
| + static ResourceFetcher* currentFetcher;
|
| +
|
| +private:
|
| + ResourceFetcher* m_oldFetcher;
|
| +
|
| + xmlGenericErrorFunc m_oldGenericErrorFunc;
|
| + xmlStructuredErrorFunc m_oldStructuredErrorFunc;
|
| + void* m_oldErrorContext;
|
| +};
|
|
|
| } // namespace WebCore
|
|
|
|
|