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

Side by Side Diff: Source/core/editing/htmlediting.h

Issue 812873003: Clean up forward declarations in WebKit/Source (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: style fix Created 6 years 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
« no previous file with comments | « Source/core/dom/RenderTreeBuilder.h ('k') | Source/core/editing/markup.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) 2004, 2006, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2004, 2006, 2008 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 18 matching lines...) Expand all
29 #include "core/dom/Position.h" 29 #include "core/dom/Position.h"
30 #include "core/editing/EditingBoundary.h" 30 #include "core/editing/EditingBoundary.h"
31 #include "platform/text/TextDirection.h" 31 #include "platform/text/TextDirection.h"
32 #include "wtf/Forward.h" 32 #include "wtf/Forward.h"
33 #include "wtf/unicode/CharacterNames.h" 33 #include "wtf/unicode/CharacterNames.h"
34 34
35 namespace blink { 35 namespace blink {
36 36
37 class Document; 37 class Document;
38 class Element; 38 class Element;
39 class ExceptionState;
40 class HTMLBRElement; 39 class HTMLBRElement;
41 class HTMLElement; 40 class HTMLElement;
42 class HTMLLIElement; 41 class HTMLLIElement;
43 class HTMLOListElement; 42 class HTMLOListElement;
44 class HTMLSpanElement; 43 class HTMLSpanElement;
45 class HTMLUListElement; 44 class HTMLUListElement;
46 class Node; 45 class Node;
47 class Position; 46 class Position;
48 class PositionWithAffinity; 47 class PositionWithAffinity;
49 class Range; 48 class Range;
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 // FIXME: this is required until 6853027 is fixed and text checking can do t his for us. 259 // FIXME: this is required until 6853027 is fixed and text checking can do t his for us.
261 return character == '\'' || character == rightSingleQuotationMark || charact er == hebrewPunctuationGershayim; 260 return character == '\'' || character == rightSingleQuotationMark || charact er == hebrewPunctuationGershayim;
262 } 261 }
263 262
264 String stringWithRebalancedWhitespace(const String&, bool startIsStartOfParagrap h, bool endIsEndOfParagraph); 263 String stringWithRebalancedWhitespace(const String&, bool startIsStartOfParagrap h, bool endIsEndOfParagraph);
265 const String& nonBreakingSpaceString(); 264 const String& nonBreakingSpaceString();
266 265
267 } 266 }
268 267
269 #endif 268 #endif
OLDNEW
« no previous file with comments | « Source/core/dom/RenderTreeBuilder.h ('k') | Source/core/editing/markup.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698