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

Side by Side Diff: Source/wtf/text/StringImpl.cpp

Issue 53213003: Fix the compile when building with STRING_STATS defined (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 1 month 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
« no previous file with comments | « no previous file | no next file » | 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) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * (C) 2001 Dirk Mueller ( mueller@kde.org ) 4 * (C) 2001 Dirk Mueller ( mueller@kde.org )
5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All r ights reserved. 5 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2013 Apple Inc. All r ights reserved.
6 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net) 6 * Copyright (C) 2006 Andrew Wellington (proton@wiretapped.net)
7 * 7 *
8 * This library is free software; you can redistribute it and/or 8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Library General Public 9 * modify it under the terms of the GNU Library General Public
10 * License as published by the Free Software Foundation; either 10 * License as published by the Free Software Foundation; either
(...skipping 20 matching lines...) Expand all
31 #include "wtf/PartitionAlloc.h" 31 #include "wtf/PartitionAlloc.h"
32 #include "wtf/StdLibExtras.h" 32 #include "wtf/StdLibExtras.h"
33 #include "wtf/WTF.h" 33 #include "wtf/WTF.h"
34 #include "wtf/text/AtomicString.h" 34 #include "wtf/text/AtomicString.h"
35 #include "wtf/text/StringBuffer.h" 35 #include "wtf/text/StringBuffer.h"
36 #include "wtf/text/StringHash.h" 36 #include "wtf/text/StringHash.h"
37 #include "wtf/unicode/CharacterNames.h" 37 #include "wtf/unicode/CharacterNames.h"
38 38
39 #ifdef STRING_STATS 39 #ifdef STRING_STATS
40 #include "wtf/DataLog.h" 40 #include "wtf/DataLog.h"
41 #include "wtf/HashMap.h"
42 #include "wtf/HashSet.h"
41 #include "wtf/ProcessID.h" 43 #include "wtf/ProcessID.h"
42 #include "wtf/RefCounted.h" 44 #include "wtf/RefCounted.h"
45 #include "wtf/ThreadingPrimitives.h"
43 #include <unistd.h> 46 #include <unistd.h>
44 #endif 47 #endif
45 48
46 using namespace std; 49 using namespace std;
47 50
48 namespace WTF { 51 namespace WTF {
49 52
50 using namespace Unicode; 53 using namespace Unicode;
51 54
52 COMPILE_ASSERT(sizeof(StringImpl) == 3 * sizeof(int), StringImpl_should_stay_sma ll); 55 COMPILE_ASSERT(sizeof(StringImpl) == 3 * sizeof(int), StringImpl_should_stay_sma ll);
(...skipping 2027 matching lines...) Expand 10 before | Expand all | Expand 10 after
2080 2083
2081 size_t StringImpl::sizeInBytes() const 2084 size_t StringImpl::sizeInBytes() const
2082 { 2085 {
2083 size_t size = length(); 2086 size_t size = length();
2084 if (!is8Bit()) 2087 if (!is8Bit())
2085 size *= 2; 2088 size *= 2;
2086 return size + sizeof(*this); 2089 return size + sizeof(*this);
2087 } 2090 }
2088 2091
2089 } // namespace WTF 2092 } // namespace WTF
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698