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

Side by Side Diff: base/strings/string_util_constants.cc

Issue 16331011: Move string files in base/ to the string subdirectory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 years, 6 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 | « base/strings/string_util.cc ('k') | base/strings/string_util_posix.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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/string_util.h" 5 #include "base/strings/string_util.h"
6 6
7 #define WHITESPACE_UNICODE \ 7 #define WHITESPACE_UNICODE \
8 0x0009, /* <control-0009> to <control-000D> */ \ 8 0x0009, /* <control-0009> to <control-000D> */ \
9 0x000A, \ 9 0x000A, \
10 0x000B, \ 10 0x000B, \
11 0x000C, \ 11 0x000C, \
12 0x000D, \ 12 0x000D, \
13 0x0020, /* Space */ \ 13 0x0020, /* Space */ \
14 0x0085, /* <control-0085> */ \ 14 0x0085, /* <control-0085> */ \
15 0x00A0, /* No-Break Space */ \ 15 0x00A0, /* No-Break Space */ \
(...skipping 30 matching lines...) Expand all
46 0x09, // <control-0009> to <control-000D> 46 0x09, // <control-0009> to <control-000D>
47 0x0A, 47 0x0A,
48 0x0B, 48 0x0B,
49 0x0C, 49 0x0C,
50 0x0D, 50 0x0D,
51 0x20, // Space 51 0x20, // Space
52 0 52 0
53 }; 53 };
54 54
55 const char kUtf8ByteOrderMark[] = "\xEF\xBB\xBF"; 55 const char kUtf8ByteOrderMark[] = "\xEF\xBB\xBF";
OLDNEW
« no previous file with comments | « base/strings/string_util.cc ('k') | base/strings/string_util_posix.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698