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

Unified Diff: third_party/WebKit/public/platform/WebLayer.h

Issue 2387113002: reflow comments in public/platform/ (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/public/platform/WebLayer.h
diff --git a/third_party/WebKit/public/platform/WebLayer.h b/third_party/WebKit/public/platform/WebLayer.h
index bfbc9ed2e30dbf24782434f972f7e9555a4e3f57..47a033417518bbb4961902213d4c85923d0d5bc1 100644
--- a/third_party/WebKit/public/platform/WebLayer.h
+++ b/third_party/WebKit/public/platform/WebLayer.h
@@ -59,7 +59,8 @@ class WebLayer {
public:
virtual ~WebLayer() {}
- // Returns a positive ID that will be unique across all WebLayers allocated in this process.
+ // Returns a positive ID that will be unique across all WebLayers allocated in
+ // this process.
virtual int id() const = 0;
// Sets a region of the layer as invalid, i.e. needs to update its content.
@@ -161,14 +162,16 @@ class WebLayer {
virtual void setScrollPositionDouble(WebDoublePoint) = 0;
virtual WebDoublePoint scrollPositionDouble() const = 0;
- // To set a WebLayer as scrollable we must specify the corresponding clip layer.
+ // To set a WebLayer as scrollable we must specify the corresponding clip
+ // layer.
virtual void setScrollClipLayer(WebLayer*) = 0;
virtual bool scrollable() const = 0;
virtual void setUserScrollable(bool horizontal, bool vertical) = 0;
virtual bool userScrollableHorizontal() const = 0;
virtual bool userScrollableVertical() const = 0;
- // Indicates that this layer will always scroll on the main thread for the provided reason.
+ // Indicates that this layer will always scroll on the main thread for the
+ // provided reason.
virtual void addMainThreadScrollingReasons(uint32_t) = 0;
virtual void clearMainThreadScrollingReasons(
uint32_t mainThreadScrollingReasonsToClear) = 0;

Powered by Google App Engine
This is Rietveld 408576698