Index: trunk/src/url/gurl.h |
=================================================================== |
--- trunk/src/url/gurl.h (revision 203026) |
+++ trunk/src/url/gurl.h (working copy) |
@@ -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 @@ |
// 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 @@ |
}; |
// 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_ |