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

Side by Side Diff: Source/core/editing/EditingStyle.cpp

Issue 15447002: Remove ~1750 superfluous includes from core (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: rebase a few hours Created 7 years, 7 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
« no previous file with comments | « Source/core/editing/EditCommand.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('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) 2007, 2008, 2009 Apple Computer, Inc. 2 * Copyright (C) 2007, 2008, 2009 Apple Computer, Inc.
3 * Copyright (C) 2010, 2011 Google Inc. All rights reserved. 3 * Copyright (C) 2010, 2011 Google 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 6 * modification, are permitted provided that the following conditions
7 * are met: 7 * are met:
8 * 1. Redistributions of source code must retain the above copyright 8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer. 9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright 10 * 2. Redistributions in binary form must reproduce the above copyright
(...skipping 28 matching lines...) Expand all
39 #include "core/css/resolver/StyleResolver.h" 39 #include "core/css/resolver/StyleResolver.h"
40 #include "core/dom/Node.h" 40 #include "core/dom/Node.h"
41 #include "core/dom/NodeTraversal.h" 41 #include "core/dom/NodeTraversal.h"
42 #include "core/dom/Position.h" 42 #include "core/dom/Position.h"
43 #include "core/dom/QualifiedName.h" 43 #include "core/dom/QualifiedName.h"
44 #include "core/dom/StyledElement.h" 44 #include "core/dom/StyledElement.h"
45 #include "core/editing/ApplyStyleCommand.h" 45 #include "core/editing/ApplyStyleCommand.h"
46 #include "core/editing/Editor.h" 46 #include "core/editing/Editor.h"
47 #include "core/editing/FrameSelection.h" 47 #include "core/editing/FrameSelection.h"
48 #include "core/editing/HTMLInterchange.h" 48 #include "core/editing/HTMLInterchange.h"
49 #include "core/editing/VisibleUnits.h"
50 #include "core/editing/htmlediting.h" 49 #include "core/editing/htmlediting.h"
51 #include "core/html/HTMLFontElement.h" 50 #include "core/html/HTMLFontElement.h"
52 #include "core/page/Frame.h" 51 #include "core/page/Frame.h"
53 #include "core/page/RuntimeCSSEnabled.h" 52 #include "core/page/RuntimeCSSEnabled.h"
54 #include "core/rendering/style/RenderStyle.h" 53 #include "core/rendering/style/RenderStyle.h"
55 #include <wtf/HashSet.h> 54 #include <wtf/HashSet.h>
56 55
57 namespace WebCore { 56 namespace WebCore {
58 57
59 // Editing style properties must be preserved during editing operation. 58 // Editing style properties must be preserved during editing operation.
(...skipping 1555 matching lines...) Expand 10 before | Expand all | Expand 10 after
1615 { 1614 {
1616 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) { 1615 for (Node* ancestor = node; ancestor; ancestor = ancestor->parentNode()) {
1617 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor); 1616 RefPtr<CSSComputedStyleDeclaration> ancestorStyle = CSSComputedStyleDecl aration::create(ancestor);
1618 if (!hasTransparentBackgroundColor(ancestorStyle.get())) 1617 if (!hasTransparentBackgroundColor(ancestorStyle.get()))
1619 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor ); 1618 return ancestorStyle->getPropertyCSSValue(CSSPropertyBackgroundColor );
1620 } 1619 }
1621 return 0; 1620 return 0;
1622 } 1621 }
1623 1622
1624 } 1623 }
OLDNEW
« no previous file with comments | « Source/core/editing/EditCommand.cpp ('k') | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698