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

Unified Diff: base/string16.h

Issue 6904109: linux: components support for base/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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
Index: base/string16.h
diff --git a/base/string16.h b/base/string16.h
index 25e980c5866e267f34a69fae10e1a0547e991d0b..c299f6f70a50fd46eb279ebe2bec0139ccc4942a 100644
--- a/base/string16.h
+++ b/base/string16.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -31,6 +31,7 @@
#include <string>
#include "base/basictypes.h"
+#include "base/base_api.h"
Lei Zhang 2011/04/28 23:21:45 nit: base before basic.
#if defined(WCHAR_T_IS_UTF16)
@@ -168,7 +169,8 @@ extern template class std::basic_string<char16, base::string16_char_traits>;
typedef std::basic_string<char16, base::string16_char_traits> string16;
namespace base {
-extern std::ostream& operator<<(std::ostream& out, const string16& str);
+BASE_API extern std::ostream& operator<<(std::ostream& out,
+ const string16& str);
}
#endif // WCHAR_T_IS_UTF32

Powered by Google App Engine
This is Rietveld 408576698