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

Unified Diff: base/i18n/char_iterator.h

Issue 7812009: Base: Switch base_i18n to be a separate dll (component build) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 4 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 | « base/i18n/case_conversion.h ('k') | base/i18n/file_util_icu.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/i18n/char_iterator.h
===================================================================
--- base/i18n/char_iterator.h (revision 97736)
+++ base/i18n/char_iterator.h (working copy)
@@ -9,6 +9,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/i18n/base_i18n_export.h"
#include "base/string16.h"
// The CharIterator classes iterate through the characters in UTF8 and
@@ -27,7 +28,7 @@
namespace base {
namespace i18n {
-class UTF8CharIterator {
+class BASE_I18N_EXPORT UTF8CharIterator {
public:
// Requires |str| to live as long as the UTF8CharIterator does.
UTF8CharIterator(const std::string* str);
@@ -73,7 +74,7 @@
DISALLOW_COPY_AND_ASSIGN(UTF8CharIterator);
};
-class UTF16CharIterator {
+class BASE_I18N_EXPORT UTF16CharIterator {
public:
// Requires |str| to live as long as the UTF16CharIterator does.
UTF16CharIterator(const string16* str);
« no previous file with comments | « base/i18n/case_conversion.h ('k') | base/i18n/file_util_icu.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698