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

Side by Side Diff: third_party/WebKit/Source/core/layout/HitTestResult.h

Issue 2080623002: Revert "Remove OwnPtr from Blink." (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) 2006 Apple Computer, Inc. 2 * Copyright (C) 2006 Apple Computer, Inc.
3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies) 3 * Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies)
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 14 matching lines...) Expand all
25 #include "core/CoreExport.h" 25 #include "core/CoreExport.h"
26 #include "core/editing/PositionWithAffinity.h" 26 #include "core/editing/PositionWithAffinity.h"
27 #include "core/layout/HitTestLocation.h" 27 #include "core/layout/HitTestLocation.h"
28 #include "core/layout/HitTestRequest.h" 28 #include "core/layout/HitTestRequest.h"
29 #include "platform/geometry/FloatQuad.h" 29 #include "platform/geometry/FloatQuad.h"
30 #include "platform/geometry/FloatRect.h" 30 #include "platform/geometry/FloatRect.h"
31 #include "platform/heap/Handle.h" 31 #include "platform/heap/Handle.h"
32 #include "platform/text/TextDirection.h" 32 #include "platform/text/TextDirection.h"
33 #include "wtf/Forward.h" 33 #include "wtf/Forward.h"
34 #include "wtf/ListHashSet.h" 34 #include "wtf/ListHashSet.h"
35 #include "wtf/OwnPtr.h"
35 #include "wtf/RefPtr.h" 36 #include "wtf/RefPtr.h"
36 #include "wtf/VectorTraits.h" 37 #include "wtf/VectorTraits.h"
37 38
38 namespace blink { 39 namespace blink {
39 40
40 class Element; 41 class Element;
41 class LocalFrame; 42 class LocalFrame;
42 class HTMLAreaElement; 43 class HTMLAreaElement;
43 class HTMLMediaElement; 44 class HTMLMediaElement;
44 class Image; 45 class Image;
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 bool m_isOverWidget; // Returns true if we are over a widget (and not in the border/padding area of a LayoutPart for example). 179 bool m_isOverWidget; // Returns true if we are over a widget (and not in the border/padding area of a LayoutPart for example).
179 180
180 mutable Member<NodeSet> m_listBasedTestResult; 181 mutable Member<NodeSet> m_listBasedTestResult;
181 }; 182 };
182 183
183 } // namespace blink 184 } // namespace blink
184 185
185 WTF_ALLOW_CLEAR_UNUSED_SLOTS_WITH_MEM_FUNCTIONS(blink::HitTestResult); 186 WTF_ALLOW_CLEAR_UNUSED_SLOTS_WITH_MEM_FUNCTIONS(blink::HitTestResult);
186 187
187 #endif // HitTestResult_h 188 #endif // HitTestResult_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698