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

Side by Side Diff: Source/core/html/parser/InputStreamPreprocessor.h

Issue 18512011: core/html: Include wtf files using "wtf/foo.h" form. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 7 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/html/parser/HTMLToken.h ('k') | Source/core/html/parser/NestingLevelIncrementer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. 2 * Copyright (C) 2008 Apple Inc. All Rights Reserved.
3 * Copyright (C) 2009 Torch Mobile, Inc. http://www.torchmobile.com/ 3 * Copyright (C) 2009 Torch Mobile, Inc. http://www.torchmobile.com/
4 * Copyright (C) 2013 Google, Inc. All Rights Reserved. 4 * Copyright (C) 2013 Google, Inc. All Rights Reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions 7 * modification, are permitted provided that the following conditions
8 * are met: 8 * are met:
9 * 1. Redistributions of source code must retain the above copyright 9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer. 10 * notice, this list of conditions and the following disclaimer.
(...skipping 11 matching lines...) Expand all
22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */ 26 */
27 27
28 #ifndef InputStreamPreprocessor_h 28 #ifndef InputStreamPreprocessor_h
29 #define InputStreamPreprocessor_h 29 #define InputStreamPreprocessor_h
30 30
31 #include "core/platform/text/SegmentedString.h" 31 #include "core/platform/text/SegmentedString.h"
32 #include <wtf/Noncopyable.h> 32 #include "wtf/Noncopyable.h"
33 33
34 namespace WebCore { 34 namespace WebCore {
35 35
36 const LChar kEndOfFileMarker = 0; 36 const LChar kEndOfFileMarker = 0;
37 37
38 // http://www.whatwg.org/specs/web-apps/current-work/#preprocessing-the-input-st ream 38 // http://www.whatwg.org/specs/web-apps/current-work/#preprocessing-the-input-st ream
39 template <typename Tokenizer> 39 template <typename Tokenizer>
40 class InputStreamPreprocessor { 40 class InputStreamPreprocessor {
41 WTF_MAKE_NONCOPYABLE(InputStreamPreprocessor); 41 WTF_MAKE_NONCOPYABLE(InputStreamPreprocessor);
42 public: 42 public:
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 129
130 // http://www.whatwg.org/specs/web-apps/current-work/#next-input-character 130 // http://www.whatwg.org/specs/web-apps/current-work/#next-input-character
131 UChar m_nextInputCharacter; 131 UChar m_nextInputCharacter;
132 bool m_skipNextNewLine; 132 bool m_skipNextNewLine;
133 }; 133 };
134 134
135 } 135 }
136 136
137 #endif // InputStreamPreprocessor_h 137 #endif // InputStreamPreprocessor_h
138 138
OLDNEW
« no previous file with comments | « Source/core/html/parser/HTMLToken.h ('k') | Source/core/html/parser/NestingLevelIncrementer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698