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

Unified Diff: third_party/WebKit/Source/core/testing/Internals.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/testing/Internals.cpp
diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
index 42c838edb8049b7fd34c2171ca5f88c9dbdf995d..7f3f52210c74124115bb2fed171b929dacb69c84 100644
--- a/third_party/WebKit/Source/core/testing/Internals.cpp
+++ b/third_party/WebKit/Source/core/testing/Internals.cpp
@@ -555,8 +555,9 @@ void Internals::pauseAnimations(double pauseTime,
ExceptionState& exceptionState) {
if (pauseTime < 0) {
exceptionState.throwDOMException(
- InvalidAccessError, ExceptionMessages::indexExceedsMinimumBound(
- "pauseTime", pauseTime, 0.0));
+ InvalidAccessError,
+ ExceptionMessages::indexExceedsMinimumBound("pauseTime", pauseTime,
+ 0.0));
return;
}
@@ -585,8 +586,9 @@ void Internals::advanceTimeForImage(Element* image,
DCHECK(image);
if (deltaTimeInSeconds < 0) {
exceptionState.throwDOMException(
- InvalidAccessError, ExceptionMessages::indexExceedsMinimumBound(
- "deltaTimeInSeconds", deltaTimeInSeconds, 0.0));
+ InvalidAccessError,
+ ExceptionMessages::indexExceedsMinimumBound("deltaTimeInSeconds",
+ deltaTimeInSeconds, 0.0));
return;
}
@@ -1297,8 +1299,9 @@ DOMPoint* Internals::touchPositionAdjustedToBestClickableNode(
EventHandler& eventHandler = document->frame()->eventHandler();
IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
HitTestResult result = eventHandler.hitTestResultAtPoint(
- hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
- HitTestRequest::ListBased,
+ hitTestPoint,
+ HitTestRequest::ReadOnly | HitTestRequest::Active |
+ HitTestRequest::ListBased,
LayoutSize(radius));
Node* targetNode = 0;
@@ -1334,8 +1337,9 @@ Node* Internals::touchNodeAdjustedToBestClickableNode(
EventHandler& eventHandler = document->frame()->eventHandler();
IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
HitTestResult result = eventHandler.hitTestResultAtPoint(
- hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
- HitTestRequest::ListBased,
+ hitTestPoint,
+ HitTestRequest::ReadOnly | HitTestRequest::Active |
+ HitTestRequest::ListBased,
LayoutSize(radius));
Node* targetNode = 0;
@@ -1367,8 +1371,9 @@ DOMPoint* Internals::touchPositionAdjustedToBestContextMenuNode(
EventHandler& eventHandler = document->frame()->eventHandler();
IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
HitTestResult result = eventHandler.hitTestResultAtPoint(
- hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
- HitTestRequest::ListBased,
+ hitTestPoint,
+ HitTestRequest::ReadOnly | HitTestRequest::Active |
+ HitTestRequest::ListBased,
LayoutSize(radius));
Node* targetNode = 0;
@@ -1404,8 +1409,9 @@ Node* Internals::touchNodeAdjustedToBestContextMenuNode(
EventHandler& eventHandler = document->frame()->eventHandler();
IntPoint hitTestPoint = document->frame()->view()->rootFrameToContents(point);
HitTestResult result = eventHandler.hitTestResultAtPoint(
- hitTestPoint, HitTestRequest::ReadOnly | HitTestRequest::Active |
- HitTestRequest::ListBased,
+ hitTestPoint,
+ HitTestRequest::ReadOnly | HitTestRequest::Active |
+ HitTestRequest::ListBased,
LayoutSize(radius));
Node* targetNode = 0;
« no previous file with comments | « third_party/WebKit/Source/core/testing/InternalSettings.cpp ('k') | third_party/WebKit/Source/core/testing/UnionTypesTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698