diff options
author | thakis@chromium.org <thakis@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2013-06-27 17:54:15 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@bbb929c8-8fbe-4397-9dbb-9b2b20218538> | 2013-06-27 17:54:15 +0000 |
commit | a71b313d32507e926df05b2bef4f5651d1ec4a0c (patch) | |
tree | f25e1e3b50077b7160b53eed1daf59148c1eddb6 /third_party/WebKit/Source/wtf/text/StringBuffer.h | |
parent | bd05a27c5c7ef050805a0ab7a47908f7340c09a5 (diff) | |
download | chromium_src-a71b313d32507e926df05b2bef4f5651d1ec4a0c.zip chromium_src-a71b313d32507e926df05b2bef4f5651d1ec4a0c.tar.gz chromium_src-a71b313d32507e926df05b2bef4f5651d1ec4a0c.tar.bz2 |
Replace #include <wtf/foo.h> with #include "wtf/foo.h" in Source/wtf.
Patch generated automatically by:
git grep -l '#include <wtf' Source/wtf/ | xargs sed -i -e 's/#include <\(wtf\/[^>]*\)>/#include "\1"/'
BUG=254653
TBR=abarth
NOTRY=true
Review URL: https://chromiumcodereview.appspot.com/18095003
git-svn-id: svn://svn.chromium.org/blink/trunk@153160 bbb929c8-8fbe-4397-9dbb-9b2b20218538
Diffstat (limited to 'third_party/WebKit/Source/wtf/text/StringBuffer.h')
-rw-r--r-- | third_party/WebKit/Source/wtf/text/StringBuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/third_party/WebKit/Source/wtf/text/StringBuffer.h b/third_party/WebKit/Source/wtf/text/StringBuffer.h index aed2556..e29cff7 100644 --- a/third_party/WebKit/Source/wtf/text/StringBuffer.h +++ b/third_party/WebKit/Source/wtf/text/StringBuffer.h @@ -29,8 +29,8 @@ #ifndef StringBuffer_h #define StringBuffer_h -#include <wtf/Assertions.h> -#include <wtf/unicode/Unicode.h> +#include "wtf/Assertions.h" +#include "wtf/unicode/Unicode.h" #include <limits> namespace WTF { |