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

Side by Side Diff: Source/wtf/text/StringConcatenate.h

Issue 18095003: Replace #include <wtf/foo.h> with #include "wtf/foo.h" in Source/wtf. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/wtf/text/StringBuffer.h ('k') | Source/wtf/text/StringHash.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2010 Apple Inc. All rights reserved. 2 * Copyright (C) 2010 Apple Inc. All rights reserved.
3 * 3 *
4 * Redistribution and use in source and binary forms, with or without 4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions 5 * modification, are permitted provided that the following conditions
6 * are met: 6 * are met:
7 * 1. Redistributions of source code must retain the above copyright 7 * 1. Redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer. 8 * notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright 9 * 2. Redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the 10 * notice, this list of conditions and the following disclaimer in the
(...skipping 11 matching lines...) Expand all
22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 22 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 */ 24 */
25 25
26 #ifndef StringConcatenate_h 26 #ifndef StringConcatenate_h
27 #define StringConcatenate_h 27 #define StringConcatenate_h
28 28
29 #include <string.h> 29 #include <string.h>
30 30
31 #ifndef WTFString_h 31 #ifndef WTFString_h
32 #include <wtf/text/AtomicString.h> 32 #include "wtf/text/AtomicString.h"
33 #endif 33 #endif
34 34
35 // This macro is helpful for testing how many intermediate Strings are created w hile evaluating an 35 // This macro is helpful for testing how many intermediate Strings are created w hile evaluating an
36 // expression containing operator+. 36 // expression containing operator+.
37 #ifndef WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING 37 #ifndef WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING
38 #define WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING() ((void)0) 38 #define WTF_STRINGTYPEADAPTER_COPIED_WTF_STRING() ((void)0)
39 #endif 39 #endif
40 40
41 namespace WTF { 41 namespace WTF {
42 42
(...skipping 414 matching lines...) Expand 10 before | Expand all | Expand 10 after
457 UChar* result = buffer; 457 UChar* result = buffer;
458 adapter1.writeTo(result); 458 adapter1.writeTo(result);
459 result += adapter1.length(); 459 result += adapter1.length();
460 adapter2.writeTo(result); 460 adapter2.writeTo(result);
461 461
462 return resultImpl.release(); 462 return resultImpl.release();
463 } 463 }
464 464
465 } // namespace WTF 465 } // namespace WTF
466 466
467 #include <wtf/text/StringOperators.h> 467 #include "wtf/text/StringOperators.h"
468 #endif 468 #endif
OLDNEW
« no previous file with comments | « Source/wtf/text/StringBuffer.h ('k') | Source/wtf/text/StringHash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698