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

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp

Issue 2701993002: DO NOT COMMIT: Results of running new (proposed) clang-format on Blink (Closed)
Patch Set: Created 3 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: third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
index 3dc860fbb3719200e58fca37db35d3ce68835fc6..50f35faa9f3dc8e49826a03665d1f7b13e487c74 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorTraceEvents.cpp
@@ -548,8 +548,9 @@ void recordTiming(const ResourceLoadTiming& timing, TracedValue* value) {
timing.calculateMillisecondDelta(timing.sendStart()));
value->setDouble("sendEnd",
timing.calculateMillisecondDelta(timing.sendEnd()));
- value->setDouble("receiveHeadersEnd", timing.calculateMillisecondDelta(
- timing.receiveHeadersEnd()));
+ value->setDouble(
+ "receiveHeadersEnd",
+ timing.calculateMillisecondDelta(timing.receiveHeadersEnd()));
value->setDouble("pushStart", timing.pushStart());
value->setDouble("pushEnd", timing.pushEnd());
}
@@ -949,8 +950,9 @@ static size_t usedHeapSize() {
std::unique_ptr<TracedValue> InspectorUpdateCountersEvent::data() {
std::unique_ptr<TracedValue> value = TracedValue::create();
if (isMainThread()) {
- value->setInteger("documents", InstanceCounters::counterValue(
- InstanceCounters::DocumentCounter));
+ value->setInteger(
+ "documents",
+ InstanceCounters::counterValue(InstanceCounters::DocumentCounter));
value->setInteger(
"nodes", InstanceCounters::counterValue(InstanceCounters::NodeCounter));
value->setInteger("jsEventListeners",

Powered by Google App Engine
This is Rietveld 408576698