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

Unified Diff: Source/core/xml/parser/XMLDocumentParserScope.h

Issue 333143003: Fix style errors in core/xml/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 6 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/core/xml/parser/XMLDocumentParser.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « Source/core/xml/parser/XMLDocumentParser.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698