OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef CHROME_BROWSER_NET_BROWSER_URL_UTIL_H_ |
| 6 #define CHROME_BROWSER_NET_BROWSER_URL_UTIL_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 class Clipboard; |
| 11 class GURL; |
| 12 |
| 13 namespace chrome_browser_net { |
| 14 |
| 15 // Writes a string representation of |url| to the system clipboard. |
| 16 void WriteURLToClipboard(const GURL& url, |
| 17 const std::wstring& languages, |
| 18 Clipboard *clipboard); |
| 19 |
| 20 } // namespace chrome_browser_net |
| 21 |
| 22 #endif // CHROME_BROWSER_NET_BROWSER_URL_UTIL_H_ |
OLD | NEW |