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

Unified Diff: third_party/WebKit/Source/core/html/HTMLVideoElement.h

Issue 2384273007: reflow comments in core/html/*.{cpp,h},core/html/imports (Closed)
Patch Set: comments 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/core/html/HTMLVideoElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLVideoElement.h b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
index 61dfb9d8428806a7d052e46f91b2b169c58f5c42..e8575f0962012044658d564ccb810f2a0f010330 100644
--- a/third_party/WebKit/Source/core/html/HTMLVideoElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLVideoElement.h
@@ -98,9 +98,9 @@ class CORE_EXPORT HTMLVideoElement final : public HTMLMediaElement,
bool isHTMLVideoElement() const override { return true; }
int sourceWidth() override { return videoWidth(); }
int sourceHeight() override { return videoHeight(); }
- bool isAccelerated() const override {
- return false;
- } // Video elements currently always go through RAM when used as a canvas image source.
+ // Video elements currently always go through RAM when used as a canvas image
+ // source.
+ bool isAccelerated() const override { return false; }
// ImageBitmapSource implementation
IntSize bitmapSourceSize() const override;
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLTrackElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLVideoElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698