summaryrefslogtreecommitdiffstats
path: root/url/gurl.h
diff options
context:
space:
mode:
Diffstat (limited to 'url/gurl.h')
-rw-r--r--url/gurl.h11
1 files changed, 6 insertions, 5 deletions
diff --git a/url/gurl.h b/url/gurl.h
index 8a16106..ef4b585 100644
--- a/url/gurl.h
+++ b/url/gurl.h
@@ -11,10 +11,9 @@
#include "base/string16.h"
#include "url/url_canon.h"
#include "url/url_canon_stdstring.h"
-#include "url/url_export.h"
#include "url/url_parse.h"
-class URL_EXPORT GURL {
+class GURL {
public:
typedef url_canon::StdStringReplacements<std::string> Replacements;
typedef url_canon::StdStringReplacements<string16> ReplacementsW;
@@ -33,8 +32,10 @@ class URL_EXPORT GURL {
// encode the query parameters. It is probably sufficient for the narrow
// version to assume the query parameter encoding should be the same as the
// input encoding.
- explicit GURL(const std::string& url_string /*, output_param_encoding*/);
- explicit GURL(const string16& url_string /*, output_param_encoding*/);
+ explicit GURL(const std::string& url_string
+ /*, output_param_encoding*/);
+ explicit GURL(const string16& url_string
+ /*, output_param_encoding*/);
// Constructor for URLs that have already been parsed and canonicalized. This
// is used for conversions from KURL, for example. The caller must supply all
@@ -360,6 +361,6 @@ class URL_EXPORT GURL {
};
// Stream operator so GURL can be used in assertion statements.
-URL_EXPORT std::ostream& operator<<(std::ostream& out, const GURL& url);
+std::ostream& operator<<(std::ostream& out, const GURL& url);
#endif // URL_GURL_H_