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

Unified Diff: third_party/WebKit/Source/core/editing/Editor.cpp

Issue 2557783002: Improve metrics for display list canvas fallback reason (Closed)
Patch Set: Created 4 years 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/ImageBitmap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/editing/Editor.cpp
diff --git a/third_party/WebKit/Source/core/editing/Editor.cpp b/third_party/WebKit/Source/core/editing/Editor.cpp
index c1d7b1601c31f25d33007acffabad03502910b9f..30c12496fe26f0d64e94f77aa55cfee98afed715 100644
--- a/third_party/WebKit/Source/core/editing/Editor.cpp
+++ b/third_party/WebKit/Source/core/editing/Editor.cpp
@@ -480,9 +480,10 @@ static PassRefPtr<Image> imageFromNode(const Node& node) {
if (!layoutObject)
return nullptr;
- if (layoutObject->isCanvas())
- return toHTMLCanvasElement(node).copiedImage(FrontBuffer,
- PreferNoAcceleration);
+ if (layoutObject->isCanvas()) {
+ return toHTMLCanvasElement(node).copiedImage(
+ FrontBuffer, PreferNoAcceleration, SnapshotReasonCopyToClipboard);
+ }
if (layoutObject->isImage()) {
LayoutImage* layoutImage = toLayoutImage(layoutObject);
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/frame/ImageBitmap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698