Index: third_party/WebKit/public/web/WebWidgetClient.h |
diff --git a/third_party/WebKit/public/web/WebWidgetClient.h b/third_party/WebKit/public/web/WebWidgetClient.h |
index 2a4ce588497ef200c5c25087fbabde4268bf264f..2fa8b8ebb0b7c6e88c993fe45fbce269b625f5d5 100644 |
--- a/third_party/WebKit/public/web/WebWidgetClient.h |
+++ b/third_party/WebKit/public/web/WebWidgetClient.h |
@@ -65,14 +65,16 @@ class WebWidgetClient { |
// Return a compositing view used for this widget. This is owned by the |
// WebWidgetClient. |
virtual WebLayerTreeView* layerTreeView() { return 0; } |
- // FIXME: Remove all overrides of this and change layerTreeView() above to ASSERT_NOT_REACHED. |
+ // FIXME: Remove all overrides of this and change layerTreeView() above to |
+ // ASSERT_NOT_REACHED. |
virtual bool allowsBrokenNullLayerTreeView() const { return false; } |
// Called when a call to WebWidget::animate is required |
virtual void scheduleAnimation() {} |
- // Called immediately following the first compositor-driven (frame-generating) layout that |
- // happened after an interesting document lifecyle change (see WebMeaningfulLayout for details.) |
+ // Called immediately following the first compositor-driven (frame-generating) |
+ // layout that happened after an interesting document lifecyle change (see |
+ // WebMeaningfulLayout for details.) |
virtual void didMeaningfulLayout(WebMeaningfulLayout) {} |
virtual void didFirstLayoutAfterFinishedParsing() {} |
@@ -134,8 +136,8 @@ class WebWidgetClient { |
// Called to update if touch events should be sent. |
virtual void hasTouchEventHandlers(bool) {} |
- // Called during WebWidget::HandleInputEvent for a TouchStart event to inform the embedder |
- // of the touch actions that are permitted for this touch. |
+ // Called during WebWidget::HandleInputEvent for a TouchStart event to inform |
+ // the embedder of the touch actions that are permitted for this touch. |
virtual void setTouchAction(WebTouchAction touchAction) {} |
// Called when value of focused text field gets dirty, e.g. value is |