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

Unified Diff: Source/modules/geolocation/Geoposition.h

Issue 169293002: Oilpan: Remove GC_INFO_{DEFINE,DECLARE} macros (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fixheaptest Created 6 years, 10 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/modules/geolocation/Geolocation.cpp ('k') | Source/modules/geolocation/Geoposition.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/modules/geolocation/Geoposition.h
diff --git a/Source/modules/geolocation/Geoposition.h b/Source/modules/geolocation/Geoposition.h
index aa03262758c2d84a7ec7a1f550018f375753c487..d0050cc36f4105939667f7e9d4b2f0b571bf564a 100644
--- a/Source/modules/geolocation/Geoposition.h
+++ b/Source/modules/geolocation/Geoposition.h
@@ -36,13 +36,16 @@
namespace WebCore {
class Geoposition : public RefCountedWillBeGarbageCollectedFinalized<Geoposition>, public ScriptWrappable {
- DECLARE_GC_INFO;
public:
static PassRefPtrWillBeRawPtr<Geoposition> create(PassRefPtrWillBeRawPtr<Coordinates> coordinates, DOMTimeStamp timestamp)
{
return adoptRefWillBeNoop(new Geoposition(coordinates, timestamp));
}
- void trace(Visitor*);
+
+ void trace(Visitor* visitor)
+ {
+ visitor->trace(m_coordinates);
+ }
DOMTimeStamp timestamp() const { return m_timestamp; }
Coordinates* coords() const { return m_coordinates.get(); }
« no previous file with comments | « Source/modules/geolocation/Geolocation.cpp ('k') | Source/modules/geolocation/Geoposition.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698