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

Unified Diff: third_party/WebKit/Source/modules/netinfo/NetworkInformation.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/modules/netinfo/NetworkInformation.cpp
diff --git a/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp b/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
index 7ff297e91e19349b2f612456d16823f35576fac3..97633ec935d05a4df1cf8e60d2b6b29b80ad7a71 100644
--- a/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
+++ b/third_party/WebKit/Source/modules/netinfo/NetworkInformation.cpp
@@ -131,8 +131,9 @@ void NetworkInformation::startObserving() {
if (!m_observing && !m_contextStopped) {
m_type = networkStateNotifier().connectionType();
networkStateNotifier().addObserver(
- this, TaskRunnerHelper::get(TaskType::Networking, getExecutionContext())
- .get());
+ this,
+ TaskRunnerHelper::get(TaskType::Networking, getExecutionContext())
+ .get());
m_observing = true;
}
}
@@ -140,8 +141,9 @@ void NetworkInformation::startObserving() {
void NetworkInformation::stopObserving() {
if (m_observing) {
networkStateNotifier().removeObserver(
- this, TaskRunnerHelper::get(TaskType::Networking, getExecutionContext())
- .get());
+ this,
+ TaskRunnerHelper::get(TaskType::Networking, getExecutionContext())
+ .get());
m_observing = false;
}
}
« no previous file with comments | « third_party/WebKit/Source/modules/mediastream/MediaConstraintsTest.cpp ('k') | third_party/WebKit/Source/modules/nfc/NFC.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698