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

Unified Diff: third_party/WebKit/Source/core/dom/MutationObserver.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/dom/MutationObserver.cpp
diff --git a/third_party/WebKit/Source/core/dom/MutationObserver.cpp b/third_party/WebKit/Source/core/dom/MutationObserver.cpp
index 6a0135dcf42033824d7e44cdae07793169f7adf1..885137da0520fe8142d6ae0e4d8fe2a3a53ac5b2 100644
--- a/third_party/WebKit/Source/core/dom/MutationObserver.cpp
+++ b/third_party/WebKit/Source/core/dom/MutationObserver.cpp
@@ -83,8 +83,9 @@ void MutationObserver::observe(Node* node,
bool attributes = observerInit.hasAttributes() && observerInit.attributes();
if (attributes ||
- (!observerInit.hasAttributes() && (observerInit.hasAttributeOldValue() ||
- observerInit.hasAttributeFilter())))
+ (!observerInit.hasAttributes() &&
+ (observerInit.hasAttributeOldValue() ||
+ observerInit.hasAttributeFilter())))
options |= Attributes;
if (observerInit.hasCharacterDataOldValue() &&
@@ -93,8 +94,9 @@ void MutationObserver::observe(Node* node,
bool characterData =
observerInit.hasCharacterData() && observerInit.characterData();
- if (characterData || (!observerInit.hasCharacterData() &&
- observerInit.hasCharacterDataOldValue()))
+ if (characterData ||
+ (!observerInit.hasCharacterData() &&
+ observerInit.hasCharacterDataOldValue()))
options |= CharacterData;
if (observerInit.childList())

Powered by Google App Engine
This is Rietveld 408576698