summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorJohn Reck <jreck@google.com>2012-02-22 17:41:36 -0800
committerJohn Reck <jreck@google.com>2012-02-23 10:30:53 -0800
commita7dee89fba4aaa5f0be152cfc7c7b9b5cff98d51 (patch)
tree89f744b6727cb92b1ec1bffd13511d16a7e90209 /net
parent4f3a742b60841cf402cd4192bd864afb7306356b (diff)
downloadexternal_chromium-a7dee89fba4aaa5f0be152cfc7c7b9b5cff98d51.zip
external_chromium-a7dee89fba4aaa5f0be152cfc7c7b9b5cff98d51.tar.gz
external_chromium-a7dee89fba4aaa5f0be152cfc7c7b9b5cff98d51.tar.bz2
Import content and address detector support
Change-Id: Iea123dd9b46b067105f945acd9e7ba8ba4421cf9
Diffstat (limited to 'net')
-rw-r--r--net/base/escape.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/base/escape.h b/net/base/escape.h
index f4c99a3..24149c3 100644
--- a/net/base/escape.h
+++ b/net/base/escape.h
@@ -11,6 +11,7 @@
#include "base/basictypes.h"
#include "base/string16.h"
+#include "net/base/net_export.h"
// Escaping --------------------------------------------------------------------
@@ -127,7 +128,7 @@ string16 UnescapeForHTML(const string16& text);
// This is basically the same as encodeURIComponent in javascript.
// For the string16 version, we do a conversion to charset before encoding the
// string. If the charset doesn't exist, we return false.
-std::string EscapeQueryParamValue(const std::string& text, bool use_plus);
+NET_EXPORT std::string EscapeQueryParamValue(const std::string& text, bool use_plus);
bool EscapeQueryParamValue(const string16& text, const char* codepage,
bool use_plus, string16* escaped);