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

Unified Diff: third_party/WebKit/Source/web/InspectorOverlay.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/InspectorOverlay.cpp
diff --git a/third_party/WebKit/Source/web/InspectorOverlay.cpp b/third_party/WebKit/Source/web/InspectorOverlay.cpp
index 5ca507f8d320046b688b819a96dc70cb3365d4d0..c4805db740a077635e25cfe2b7f90b53aa5ea463 100644
--- a/third_party/WebKit/Source/web/InspectorOverlay.cpp
+++ b/third_party/WebKit/Source/web/InspectorOverlay.cpp
@@ -240,7 +240,8 @@ bool InspectorOverlay::handleInputEvent(const WebInputEvent& inputEvent) {
if (WebInputEvent::isGestureEventType(inputEvent.type) &&
inputEvent.type == WebInputEvent::GestureTap) {
- // Only let GestureTab in (we only need it and we know PlatformGestureEventBuilder supports it).
+ // Only let GestureTab in (we only need it and we know
+ // PlatformGestureEventBuilder supports it).
PlatformGestureEvent gestureEvent = PlatformGestureEventBuilder(
m_webViewImpl->mainFrameImpl()->frameView(),
static_cast<const WebGestureEvent&>(inputEvent));
@@ -252,7 +253,8 @@ bool InspectorOverlay::handleInputEvent(const WebInputEvent& inputEvent) {
}
if (WebInputEvent::isMouseEventType(inputEvent.type) &&
inputEvent.type != WebInputEvent::MouseEnter) {
- // PlatformMouseEventBuilder does not work with MouseEnter type, so we filter it out manually.
+ // PlatformMouseEventBuilder does not work with MouseEnter type, so we
+ // filter it out manually.
PlatformMouseEvent mouseEvent = PlatformMouseEventBuilder(
m_webViewImpl->mainFrameImpl()->frameView(),
static_cast<const WebMouseEvent&>(inputEvent));
@@ -609,8 +611,8 @@ void InspectorOverlay::reset(const IntSize& viewportSize,
resetData->setObject("viewportSize",
buildObjectForSize(viewportInScreen.size()));
- // The zoom factor in the overlay frame already has been multiplied by the window to viewport scale
- // (aka device scale factor), so cancel it.
+ // The zoom factor in the overlay frame already has been multiplied by the
+ // window to viewport scale (aka device scale factor), so cancel it.
resetData->setDouble(
"pageZoomFactor",
m_webViewImpl->mainFrameImpl()->frame()->pageZoomFactor() /
« no previous file with comments | « third_party/WebKit/Source/web/FullscreenController.cpp ('k') | third_party/WebKit/Source/web/LinkHighlightImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698