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

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGResourceClient.cpp

Issue 2400663002: Adjust some includes around SVGResourceClient and FilterOperation (Closed)
Patch Set: Add back include - maybe fix Win compilation 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
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGResourceClient.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "core/svg/SVGResourceClient.h" 5 #include "core/svg/SVGResourceClient.h"
6 6
7 #include "core/fetch/DocumentResourceReference.h" 7 #include "core/fetch/DocumentResourceReference.h"
8 #include "core/layout/svg/LayoutSVGResourceContainer.h" 8 #include "core/layout/svg/LayoutSVGResourceContainer.h"
9 #include "core/layout/svg/ReferenceFilterBuilder.h" 9 #include "core/layout/svg/ReferenceFilterBuilder.h"
10 #include "core/svg/SVGFilterElement.h"
10 11
11 namespace blink { 12 namespace blink {
12 13
13 SVGResourceClient::SVGResourceClient() { 14 SVGResourceClient::SVGResourceClient() {
14 ThreadState::current()->registerPreFinalizer(this); 15 ThreadState::current()->registerPreFinalizer(this);
15 } 16 }
16 17
17 SVGResourceClient::~SVGResourceClient() {} 18 SVGResourceClient::~SVGResourceClient() {}
18 19
19 void SVGResourceClient::addFilterReferences(const FilterOperations& operations, 20 void SVGResourceClient::addFilterReferences(const FilterOperations& operations,
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 filterNeedsInvalidation(); 77 filterNeedsInvalidation();
77 } 78 }
78 79
79 DEFINE_TRACE(SVGResourceClient) { 80 DEFINE_TRACE(SVGResourceClient) {
80 visitor->trace(m_internalFilterReferences); 81 visitor->trace(m_internalFilterReferences);
81 visitor->trace(m_externalFilterReferences); 82 visitor->trace(m_externalFilterReferences);
82 DocumentResourceClient::trace(visitor); 83 DocumentResourceClient::trace(visitor);
83 } 84 }
84 85
85 } // namespace blink 86 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/svg/SVGResourceClient.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698