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

Unified Diff: Source/modules/device_orientation/DeviceMotionData.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
Index: Source/modules/device_orientation/DeviceMotionData.h
diff --git a/Source/modules/device_orientation/DeviceMotionData.h b/Source/modules/device_orientation/DeviceMotionData.h
index 879638cf67681ae2bb673a3d0290258b0fe37c74..d6f7922012985f50df496109453b8a6d6e510281 100644
--- a/Source/modules/device_orientation/DeviceMotionData.h
+++ b/Source/modules/device_orientation/DeviceMotionData.h
@@ -38,11 +38,9 @@ class WebDeviceMotionData;
namespace WebCore {
class DeviceMotionData : public RefCountedWillBeGarbageCollected<DeviceMotionData> {
- DECLARE_GC_INFO;
public:
class Acceleration : public RefCountedWillBeGarbageCollected<DeviceMotionData::Acceleration> {
- DECLARE_GC_INFO;
public:
static PassRefPtrWillBeRawPtr<Acceleration> create(bool canProvideX, double x, bool canProvideY, double y, bool canProvideZ, double z);
void trace(Visitor*) { }
@@ -68,7 +66,6 @@ public:
};
class RotationRate : public RefCountedWillBeGarbageCollected<DeviceMotionData::RotationRate> {
- DECLARE_GC_INFO;
public:
static PassRefPtrWillBeRawPtr<RotationRate> create(bool canProvideAlpha, double alpha, bool canProvideBeta, double beta, bool canProvideGamma, double gamma);
void trace(Visitor*) { }
« no previous file with comments | « Source/modules/device_orientation/DeviceAcceleration.cpp ('k') | Source/modules/device_orientation/DeviceMotionData.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698