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

Side by Side Diff: third_party/WebKit/Source/core/editing/EditingStyle.h

Issue 1882003002: include RefCounted.h where needed, only. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: compile fix Created 4 years, 8 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) 2010 Google Inc. All rights reserved. 2 * Copyright (C) 2010 Google Inc. All rights reserved.
3 * Copyright (C) 2013 Apple Inc. All rights reserved. 3 * Copyright (C) 2013 Apple Inc. All rights reserved.
4 * 4 *
5 * Redistribution and use in source and binary forms, with or without 5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are 6 * modification, are permitted provided that the following conditions are
7 * met: 7 * met:
8 * 8 *
9 * * Redistributions of source code must retain the above copyright 9 * * 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 21 matching lines...) Expand all
32 #ifndef EditingStyle_h 32 #ifndef EditingStyle_h
33 #define EditingStyle_h 33 #define EditingStyle_h
34 34
35 #include "core/CSSPropertyNames.h" 35 #include "core/CSSPropertyNames.h"
36 #include "core/CSSValueKeywords.h" 36 #include "core/CSSValueKeywords.h"
37 #include "core/editing/Position.h" 37 #include "core/editing/Position.h"
38 #include "core/editing/VisibleSelection.h" 38 #include "core/editing/VisibleSelection.h"
39 #include "core/editing/WritingDirection.h" 39 #include "core/editing/WritingDirection.h"
40 #include "platform/heap/Handle.h" 40 #include "platform/heap/Handle.h"
41 #include "wtf/Forward.h" 41 #include "wtf/Forward.h"
42 #include "wtf/RefCounted.h"
43 #include "wtf/RefPtr.h"
44 #include "wtf/TriState.h" 42 #include "wtf/TriState.h"
45 #include "wtf/Vector.h" 43 #include "wtf/Vector.h"
46 #include "wtf/text/WTFString.h" 44 #include "wtf/text/WTFString.h"
47 45
48 namespace blink { 46 namespace blink {
49 47
50 class CSSStyleDeclaration; 48 class CSSStyleDeclaration;
51 class CSSComputedStyleDeclaration; 49 class CSSComputedStyleDeclaration;
52 class ContainerNode; 50 class ContainerNode;
53 class Document; 51 class Document;
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
233 String m_applyFontSize; 231 String m_applyFontSize;
234 }; 232 };
235 233
236 // FIXME: Remove these functions or make them non-global to discourage using CSS StyleDeclaration directly. 234 // FIXME: Remove these functions or make them non-global to discourage using CSS StyleDeclaration directly.
237 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID); 235 CSSValueID getIdentifierValue(CSSStyleDeclaration*, CSSPropertyID);
238 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID); 236 CSSValueID getIdentifierValue(StylePropertySet*, CSSPropertyID);
239 237
240 } // namespace blink 238 } // namespace blink
241 239
242 #endif // EditingStyle_h 240 #endif // EditingStyle_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/editing/DOMSelection.h ('k') | third_party/WebKit/Source/core/editing/commands/UndoStep.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698