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

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

Issue 1627713002: Add more missing closing namespace comments. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, address comment (also filed llvm.org/PR26290) Created 4 years, 11 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) 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 116 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 return source.isClosed() && source.length() == 1; 127 return source.isClosed() && source.length() == 1;
128 } 128 }
129 129
130 Tokenizer* m_tokenizer; 130 Tokenizer* m_tokenizer;
131 131
132 // http://www.whatwg.org/specs/web-apps/current-work/#next-input-character 132 // http://www.whatwg.org/specs/web-apps/current-work/#next-input-character
133 UChar m_nextInputCharacter; 133 UChar m_nextInputCharacter;
134 bool m_skipNextNewLine; 134 bool m_skipNextNewLine;
135 }; 135 };
136 136
137 } 137 } // namespace blink
138 138
139 #endif // InputStreamPreprocessor_h 139 #endif // InputStreamPreprocessor_h
140 140
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698