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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/renderer/clipboard_utils.h ('k') | content/renderer/context_menu_params_builder.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "content/renderer/clipboard_utils.h" 5 #include "content/renderer/clipboard_utils.h"
6 6
7 #include "base/strings/utf_string_conversions.h" 7 #include "base/strings/utf_string_conversions.h"
8 #include "net/base/escape.h" 8 #include "net/base/escape.h"
9 #include "third_party/WebKit/public/platform/WebString.h" 9 #include "third_party/WebKit/public/platform/WebString.h"
10 #include "third_party/WebKit/public/platform/WebURL.h" 10 #include "third_party/WebKit/public/platform/WebURL.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 std::string URLToMarkup(const WebKit::WebURL& url, 14 std::string URLToMarkup(const blink::WebURL& url,
15 const WebKit::WebString& title) { 15 const blink::WebString& title) {
16 std::string markup("<a href=\""); 16 std::string markup("<a href=\"");
17 markup.append(url.spec()); 17 markup.append(url.spec());
18 markup.append("\">"); 18 markup.append("\">");
19 // TODO(darin): HTML escape this 19 // TODO(darin): HTML escape this
20 markup.append(net::EscapeForHTML(UTF16ToUTF8(title))); 20 markup.append(net::EscapeForHTML(UTF16ToUTF8(title)));
21 markup.append("</a>"); 21 markup.append("</a>");
22 return markup; 22 return markup;
23 } 23 }
24 24
25 std::string URLToImageMarkup(const WebKit::WebURL& url, 25 std::string URLToImageMarkup(const blink::WebURL& url,
26 const WebKit::WebString& title) { 26 const blink::WebString& title) {
27 std::string markup("<img src=\""); 27 std::string markup("<img src=\"");
28 markup.append(net::EscapeForHTML(url.spec())); 28 markup.append(net::EscapeForHTML(url.spec()));
29 markup.append("\""); 29 markup.append("\"");
30 if (!title.isEmpty()) { 30 if (!title.isEmpty()) {
31 markup.append(" alt=\""); 31 markup.append(" alt=\"");
32 markup.append(net::EscapeForHTML(UTF16ToUTF8(title))); 32 markup.append(net::EscapeForHTML(UTF16ToUTF8(title)));
33 markup.append("\""); 33 markup.append("\"");
34 } 34 }
35 markup.append("/>"); 35 markup.append("/>");
36 return markup; 36 return markup;
37 } 37 }
38 38
39 } // namespace content 39 } // namespace content
OLDNEW
« 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