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

Side by Side Diff: Source/core/dom/QualifiedName.cpp

Issue 47623002: Fix more warnings on linux (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix RenderImage.cpp. 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 | « Source/core/dom/Document.cpp ('k') | Source/core/html/canvas/WebGLRenderingContext.cpp » ('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) 2005, 2006, 2009 Apple Inc. All rights reserved. 2 * Copyright (C) 2005, 2006, 2009 Apple Inc. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
(...skipping 27 matching lines...) Expand all
38 38
39 namespace WebCore { 39 namespace WebCore {
40 40
41 static const int staticQualifiedNamesCount = HTMLNames::HTMLTagsCount + HTMLName s::HTMLAttrsCount 41 static const int staticQualifiedNamesCount = HTMLNames::HTMLTagsCount + HTMLName s::HTMLAttrsCount
42 + SVGNames::SVGTagsCount + SVGNames::SVGAttrsCount 42 + SVGNames::SVGTagsCount + SVGNames::SVGAttrsCount
43 + XLinkNames::XLinkAttrsCount 43 + XLinkNames::XLinkAttrsCount
44 + XMLNSNames::XMLNSAttrsCount 44 + XMLNSNames::XMLNSAttrsCount
45 + XMLNames::XMLAttrsCount; 45 + XMLNames::XMLAttrsCount;
46 46
47 struct QualifiedNameHashTraits : public HashTraits<QualifiedName::QualifiedNameI mpl*> { 47 struct QualifiedNameHashTraits : public HashTraits<QualifiedName::QualifiedNameI mpl*> {
48 static const int minimumTableSize = WTF::HashTableCapacityForSize<staticQual ifiedNamesCount>::value; 48 static const unsigned minimumTableSize = WTF::HashTableCapacityForSize<stati cQualifiedNamesCount>::value;
49 }; 49 };
50 50
51 typedef HashSet<QualifiedName::QualifiedNameImpl*, QualifiedNameHash, QualifiedN ameHashTraits> QualifiedNameCache; 51 typedef HashSet<QualifiedName::QualifiedNameImpl*, QualifiedNameHash, QualifiedN ameHashTraits> QualifiedNameCache;
52 52
53 static QualifiedNameCache& qualifiedNameCache() 53 static QualifiedNameCache& qualifiedNameCache()
54 { 54 {
55 // This code is lockless and thus assumes it all runs on one thread! 55 // This code is lockless and thus assumes it all runs on one thread!
56 ASSERT(isMainThread()); 56 ASSERT(isMainThread());
57 static QualifiedNameCache* gNameCache = new QualifiedNameCache; 57 static QualifiedNameCache* gNameCache = new QualifiedNameCache;
58 return *gNameCache; 58 return *gNameCache;
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 { 142 {
143 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nameNamespac e); 143 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nameNamespac e);
144 } 144 }
145 145
146 void createQualifiedName(void* targetAddress, StringImpl* name) 146 void createQualifiedName(void* targetAddress, StringImpl* name)
147 { 147 {
148 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nullAtom); 148 new (targetAddress) QualifiedName(nullAtom, AtomicString(name), nullAtom);
149 } 149 }
150 150
151 } 151 }
OLDNEW
« no previous file with comments | « Source/core/dom/Document.cpp ('k') | Source/core/html/canvas/WebGLRenderingContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698