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

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

Issue 2724593002: Move MarkupTokenizerInlines.h to core/html (Closed)
Patch Set: Created 3 years, 9 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) 2010 Google, Inc. All Rights Reserved. 4 * Copyright (C) 2010 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 m_state = prefix::stateName; \ 89 m_state = prefix::stateName; \
90 if (source.isEmpty() || !m_inputStreamPreprocessor.peek(source)) \ 90 if (source.isEmpty() || !m_inputStreamPreprocessor.peek(source)) \
91 return haveBufferedCharacterToken(); \ 91 return haveBufferedCharacterToken(); \
92 cc = m_inputStreamPreprocessor.nextInputCharacter(); \ 92 cc = m_inputStreamPreprocessor.nextInputCharacter(); \
93 goto stateName; \ 93 goto stateName; \
94 } while (false) 94 } while (false)
95 95
96 } // namespace blink 96 } // namespace blink
97 97
98 #endif // MarkupTokenizerInlines_h 98 #endif // MarkupTokenizerInlines_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698