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

Side by Side Diff: Source/core/html/HTMLViewSourceDocument.h

Issue 1360723003: Non-Oilpan Memory: Fix HTMLViewSourceDocument and WebLeakDetector. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2008, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 29 matching lines...) Expand all
40 AnnotateSourceAsXSS 40 AnnotateSourceAsXSS
41 }; 41 };
42 42
43 static PassRefPtrWillBeRawPtr<HTMLViewSourceDocument> create(const DocumentI nit& initializer, const String& mimeType) 43 static PassRefPtrWillBeRawPtr<HTMLViewSourceDocument> create(const DocumentI nit& initializer, const String& mimeType)
44 { 44 {
45 return adoptRefWillBeNoop(new HTMLViewSourceDocument(initializer, mimeTy pe)); 45 return adoptRefWillBeNoop(new HTMLViewSourceDocument(initializer, mimeTy pe));
46 } 46 }
47 47
48 void addSource(const String&, HTMLToken&, SourceAnnotation); 48 void addSource(const String&, HTMLToken&, SourceAnnotation);
49 49
50 #if !ENABLE(OILPAN)
51 void dispose() override;
52 #endif
53
50 DECLARE_VIRTUAL_TRACE(); 54 DECLARE_VIRTUAL_TRACE();
51 55
52 private: 56 private:
53 HTMLViewSourceDocument(const DocumentInit&, const String& mimeType); 57 HTMLViewSourceDocument(const DocumentInit&, const String& mimeType);
54 58
55 PassRefPtrWillBeRawPtr<DocumentParser> createParser() override; 59 PassRefPtrWillBeRawPtr<DocumentParser> createParser() override;
56 60
57 void processDoctypeToken(const String& source, HTMLToken&); 61 void processDoctypeToken(const String& source, HTMLToken&);
58 void processEndOfFileToken(const String& source, HTMLToken&); 62 void processEndOfFileToken(const String& source, HTMLToken&);
59 void processTagToken(const String& source, HTMLToken&, SourceAnnotation); 63 void processTagToken(const String& source, HTMLToken&, SourceAnnotation);
(...skipping 14 matching lines...) Expand all
74 String m_type; 78 String m_type;
75 RefPtrWillBeMember<Element> m_current; 79 RefPtrWillBeMember<Element> m_current;
76 RefPtrWillBeMember<HTMLTableSectionElement> m_tbody; 80 RefPtrWillBeMember<HTMLTableSectionElement> m_tbody;
77 RefPtrWillBeMember<HTMLTableCellElement> m_td; 81 RefPtrWillBeMember<HTMLTableCellElement> m_td;
78 int m_lineNumber; 82 int m_lineNumber;
79 }; 83 };
80 84
81 } 85 }
82 86
83 #endif // HTMLViewSourceDocument_h 87 #endif // HTMLViewSourceDocument_h
OLDNEW
« no previous file with comments | « Source/bindings/core/v8/V8PerIsolateData.cpp ('k') | Source/core/html/HTMLViewSourceDocument.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698