Chromium Code Reviews| Index: content/renderer/clipboard_utils.h |
| diff --git a/content/renderer/clipboard_utils.h b/content/renderer/clipboard_utils.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e767907769457fafa3b235e1fa2ff0fe9be6c3f1 |
| --- /dev/null |
| +++ b/content/renderer/clipboard_utils.h |
| @@ -0,0 +1,27 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef CONTENT_RENDERER_CLIPBOARD_UTILS_H_ |
| +#define CONTENT_RENDERER_CLIPBOARD_UTILS_H_ |
| + |
| +#include <string> |
| + |
| +#include "content/common/content_export.h" |
| + |
| +namespace WebKit { |
| +class WebString; |
| +class WebURL; |
| +} |
| + |
| +namespace content { |
| + |
| +CONTENT_EXPORT std::string URLToMarkup(const WebKit::WebURL& url, |
|
jochen (gone - plz use gerrit)
2013/10/01 08:55:19
why do those need to be exported?
|
| + const WebKit::WebString& title); |
| + |
| +CONTENT_EXPORT std::string URLToImageMarkup(const WebKit::WebURL& url, |
| + const WebKit::WebString& title); |
| + |
| +} // namespace content |
| + |
| +#endif // CONTENT_RENDERER_CLIPBOARD_UTILS_H_ |