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

Unified Diff: third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp

Issue 2387263004: Manually remove many instances of a comma quirk arising from the reformat. (Closed)
Patch Set: merge with master; thakis nit 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp
diff --git a/third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp b/third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp
index dc9b25317e1a419b1f1c72cbafc7fbdebea2655c..f5f64aaa14725c9d0383b5890edd3e4a9962bc85 100644
--- a/third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp
+++ b/third_party/WebKit/Source/modules/sensor/SensorReadingEvent.cpp
@@ -10,8 +10,7 @@ SensorReadingEvent::~SensorReadingEvent() = default;
SensorReadingEvent::SensorReadingEvent(const AtomicString& eventType,
SensorReading* reading)
- : Event(eventType, false, false) // Does not bubble and is not cancelable.
- ,
+ : Event(eventType, false, false), // Does not bubble and is not cancelable.
m_reading(reading) {
DCHECK(m_reading);
}

Powered by Google App Engine
This is Rietveld 408576698