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

Side by Side Diff: third_party/WebKit/Source/web/WebLeakDetector.cpp

Issue 2016673002: Remove unnecessary inclusions of LayoutObject-derived headers in web/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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) 2014 Google Inc. All rights reserved. 2 * Copyright (C) 2014 Google 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 are 5 * modification, are permitted provided that the following conditions are
6 * met: 6 * met:
7 * 7 *
8 * * Redistributions of source code must retain the above copyright 8 * * 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 * * Redistributions in binary form must reproduce the above 10 * * Redistributions in binary form must reproduce the above
(...skipping 12 matching lines...) Expand all
23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */ 29 */
30 30
31 #include "public/web/WebLeakDetector.h" 31 #include "public/web/WebLeakDetector.h"
32 32
33 #include "bindings/core/v8/ScriptPromise.h"
34 #include "bindings/core/v8/V8Binding.h"
35 #include "bindings/core/v8/V8GCController.h" 33 #include "bindings/core/v8/V8GCController.h"
36 #include "core/dom/ActiveDOMObject.h"
37 #include "core/dom/Document.h"
38 #include "core/editing/spellcheck/SpellChecker.h" 34 #include "core/editing/spellcheck/SpellChecker.h"
39 #include "core/fetch/MemoryCache.h" 35 #include "core/fetch/MemoryCache.h"
40 #include "core/inspector/InstanceCounters.h" 36 #include "core/inspector/InstanceCounters.h"
41 #include "core/layout/LayoutObject.h"
42 #include "core/workers/WorkerThread.h" 37 #include "core/workers/WorkerThread.h"
43 #include "modules/webaudio/AudioNode.h"
44 #include "platform/Timer.h" 38 #include "platform/Timer.h"
45 #include "public/web/WebDocument.h"
46 #include "public/web/WebFrame.h" 39 #include "public/web/WebFrame.h"
47 #include "web/WebLocalFrameImpl.h" 40 #include "web/WebLocalFrameImpl.h"
48 41
49 namespace blink { 42 namespace blink {
50 43
51 namespace { 44 namespace {
52 45
53 class WebLeakDetectorImpl final : public WebLeakDetector { 46 class WebLeakDetectorImpl final : public WebLeakDetector {
54 WTF_MAKE_NONCOPYABLE(WebLeakDetectorImpl); 47 WTF_MAKE_NONCOPYABLE(WebLeakDetectorImpl);
55 public: 48 public:
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
160 } 153 }
161 154
162 } // namespace 155 } // namespace
163 156
164 WebLeakDetector* WebLeakDetector::create(WebLeakDetectorClient* client) 157 WebLeakDetector* WebLeakDetector::create(WebLeakDetectorClient* client)
165 { 158 {
166 return new WebLeakDetectorImpl(client); 159 return new WebLeakDetectorImpl(client);
167 } 160 }
168 161
169 } // namespace blink 162 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/web/WebInputEventConversion.cpp ('k') | third_party/WebKit/Source/web/WebLocalFrameImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698