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

Unified Diff: content/renderer/clipboard_utils.cc

Issue 63253002: Rename WebKit namespace to blink (part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 | « content/renderer/clipboard_utils.h ('k') | content/renderer/context_menu_params_builder.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/clipboard_utils.cc
diff --git a/content/renderer/clipboard_utils.cc b/content/renderer/clipboard_utils.cc
index d146f6743be81cc43ec7e3738cc9479621e30389..28c04c99a7efd5efffaec07832cadba093da558d 100644
--- a/content/renderer/clipboard_utils.cc
+++ b/content/renderer/clipboard_utils.cc
@@ -11,8 +11,8 @@
namespace content {
-std::string URLToMarkup(const WebKit::WebURL& url,
- const WebKit::WebString& title) {
+std::string URLToMarkup(const blink::WebURL& url,
+ const blink::WebString& title) {
std::string markup("<a href=\"");
markup.append(url.spec());
markup.append("\">");
@@ -22,8 +22,8 @@ std::string URLToMarkup(const WebKit::WebURL& url,
return markup;
}
-std::string URLToImageMarkup(const WebKit::WebURL& url,
- const WebKit::WebString& title) {
+std::string URLToImageMarkup(const blink::WebURL& url,
+ const blink::WebString& title) {
std::string markup("<img src=\"");
markup.append(net::EscapeForHTML(url.spec()));
markup.append("\"");
« no previous file with comments | « content/renderer/clipboard_utils.h ('k') | content/renderer/context_menu_params_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698