| Index: webkit/glue/webclipboard_impl.cc
|
| diff --git a/webkit/glue/webclipboard_impl.cc b/webkit/glue/webclipboard_impl.cc
|
| index d9aed7ae7627f0efcad2ea3f76ea25b5c96bf00f..0341079b86b90c43b3427220467c4e18cb04ace3 100644
|
| --- a/webkit/glue/webclipboard_impl.cc
|
| +++ b/webkit/glue/webclipboard_impl.cc
|
| @@ -156,11 +156,8 @@ void WebClipboardImpl::writeImage(
|
| scw.WriteBitmapFromPixels(bitmap.getPixels(), image.size());
|
| }
|
|
|
| - if (!url.isEmpty()) {
|
| - scw.WriteBookmark(title, url.spec());
|
| - scw.WriteHTML(UTF8ToUTF16(URLToImageMarkup(url, title)), "");
|
| - scw.WriteText(UTF8ToUTF16(url.spec()));
|
| - }
|
| + // We intentionally only write the image. If the user wants the URL, they
|
| + // can get that from the context menu.
|
| }
|
|
|
| bool WebClipboardImpl::ConvertBufferType(Buffer buffer,
|
|
|