Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2170)

Unified Diff: url/url_canon_icu.h

Issue 13998025: url: Build it as a static library. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « url/url_canon_host.cc ('k') | url/url_canon_icu.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: url/url_canon_icu.h
diff --git a/url/url_canon_icu.h b/url/url_canon_icu.h
index e529fcbd9a8600f7e85432549f864ffe2ff07aaf..3984fa2bedf53403df5d977b24da31cac5d40bd2 100644
--- a/url/url_canon_icu.h
+++ b/url/url_canon_icu.h
@@ -27,12 +27,12 @@
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-// ICU integration functions.
+#ifndef URL_URL_CANON_ICU_H_
+#define URL_URL_CANON_ICU_H_
-#ifndef GOOGLEURL_SRC_URL_CANON_ICU_H__
-#define GOOGLEURL_SRC_URL_CANON_ICU_H__
+// ICU integration functions.
-#include "googleurl/src/url_canon.h"
+#include "url/url_canon.h"
typedef struct UConverter UConverter;
@@ -45,13 +45,13 @@ class ICUCharsetConverter : public CharsetConverter {
// Constructs a converter using an already-existing ICU character set
// converter. This converter is NOT owned by this object; the lifetime must
// be managed by the creator such that it is alive as long as this is.
- GURL_API ICUCharsetConverter(UConverter* converter);
+ ICUCharsetConverter(UConverter* converter);
- GURL_API virtual ~ICUCharsetConverter();
+ virtual ~ICUCharsetConverter();
- GURL_API virtual void ConvertFromUTF16(const char16* input,
- int input_len,
- CanonOutput* output);
+ virtual void ConvertFromUTF16(const char16* input,
+ int input_len,
+ CanonOutput* output);
private:
// The ICU converter, not owned by this class.
@@ -60,4 +60,4 @@ class ICUCharsetConverter : public CharsetConverter {
} // namespace url_canon
-#endif // GOOGLEURL_SRC_URL_CANON_ICU_H__
+#endif // URL_URL_CANON_ICU_H_
« no previous file with comments | « url/url_canon_host.cc ('k') | url/url_canon_icu.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698