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

Side by Side Diff: third_party/WebKit/Source/core/css/parser/CSSParserObserver.h

Issue 2398013002: Reflow comments in core/css/parser (Closed)
Patch Set: Created 4 years, 2 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) 2003 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights reserv ed. 3 * Copyright (C) 2004, 2005, 2006, 2008, 2009, 2010 Apple Inc. All rights
4 * reserved.
4 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> 5 * Copyright (C) 2008 Eric Seidel <eric@webkit.org>
5 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights reserve d. 6 * Copyright (C) 2009 - 2010 Torch Mobile (Beijing) Co. Ltd. All rights
7 * reserved.
6 * 8 *
7 * This library is free software; you can redistribute it and/or 9 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 10 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 11 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 12 * version 2 of the License, or (at your option) any later version.
11 * 13 *
12 * This library is distributed in the hope that it will be useful, 14 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of 15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Library General Public License for more details. 17 * Library General Public License for more details.
(...skipping 28 matching lines...) Expand all
44 virtual void observeProperty(unsigned startOffset, 46 virtual void observeProperty(unsigned startOffset,
45 unsigned endOffset, 47 unsigned endOffset,
46 bool isImportant, 48 bool isImportant,
47 bool isParsed) = 0; 49 bool isParsed) = 0;
48 virtual void observeComment(unsigned startOffset, unsigned endOffset) = 0; 50 virtual void observeComment(unsigned startOffset, unsigned endOffset) = 0;
49 }; 51 };
50 52
51 } // namespace blink 53 } // namespace blink
52 54
53 #endif // CSSParserObserver_h 55 #endif // CSSParserObserver_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698