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

Unified Diff: third_party/WebKit/Source/web/PageWidgetDelegate.cpp

Issue 2389633002: reflow comments in web/ (Closed)
Patch Set: . 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/web/PageWidgetDelegate.cpp
diff --git a/third_party/WebKit/Source/web/PageWidgetDelegate.cpp b/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
index cc3323da4191e6bdcee24d2db8edc35998cb978b..227bce08147096b6c101f8f3a526ca9108f5ae69 100644
--- a/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
+++ b/third_party/WebKit/Source/web/PageWidgetDelegate.cpp
@@ -72,8 +72,8 @@ static void paintInternal(Page& page,
{
GraphicsContext& paintContext = pictureBuilder.context();
- // FIXME: device scale factor settings are layering violations and should not
- // be used within Blink paint code.
+ // FIXME: device scale factor settings are layering violations and should
+ // not be used within Blink paint code.
float scaleFactor = page.deviceScaleFactor();
paintContext.setDeviceScaleFactor(scaleFactor);
@@ -206,8 +206,9 @@ WebInputEventResult PageWidgetDelegate::handleInputEvent(
case WebInputEvent::GesturePinchBegin:
case WebInputEvent::GesturePinchEnd:
case WebInputEvent::GesturePinchUpdate:
- // Touchscreen pinch events are currently not handled in main thread. Once they are,
- // these should be passed to |handleGestureEvent| similar to gesture scroll events.
+ // Touchscreen pinch events are currently not handled in main thread.
+ // Once they are, these should be passed to |handleGestureEvent| similar
+ // to gesture scroll events.
return WebInputEventResult::NotHandled;
default:
return WebInputEventResult::NotHandled;
« no previous file with comments | « third_party/WebKit/Source/web/PageWidgetDelegate.h ('k') | third_party/WebKit/Source/web/RotationViewportAnchor.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698