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

Unified Diff: webkit/support/mock_webclipboard_impl.cc

Issue 17420005: Move the following clipboard files from webkit\glue to webkit\renderer. These files now live in the… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 6 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
« no previous file with comments | « webkit/renderer/clipboard_utils.cc ('k') | webkit/support/simple_clipboard_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/support/mock_webclipboard_impl.cc
===================================================================
--- webkit/support/mock_webclipboard_impl.cc (revision 207553)
+++ webkit/support/mock_webclipboard_impl.cc (working copy)
@@ -15,8 +15,8 @@
#include "third_party/WebKit/public/platform/WebImage.h"
#include "third_party/WebKit/public/platform/WebURL.h"
#include "ui/base/clipboard/clipboard.h"
-#include "webkit/glue/webclipboard_impl.h"
#include "webkit/glue/webkit_glue.h"
+#include "webkit/renderer/clipboard_utils.h"
#include "webkit/support/webkit_support_gfx.h"
using WebKit::WebDragData;
@@ -155,8 +155,7 @@
const WebKit::WebURL& url, const WebKit::WebString& title) {
clear();
- m_htmlText = WebString::fromUTF8(
- webkit_glue::WebClipboardImpl::URLToMarkup(url, title));
+ m_htmlText = WebString::fromUTF8(webkit_clipboard::URLToMarkup(url, title));
m_plainText = url.spec().utf16();
}
@@ -167,7 +166,7 @@
m_plainText = m_htmlText;
m_htmlText = WebString::fromUTF8(
- webkit_glue::WebClipboardImpl::URLToImageMarkup(url, title));
+ webkit_clipboard::URLToImageMarkup(url, title));
m_image = image;
}
}
« no previous file with comments | « webkit/renderer/clipboard_utils.cc ('k') | webkit/support/simple_clipboard_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698