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

Side by Side Diff: Source/wtf/VectorTraits.h

Issue 299353004: Oilpan: move editing objects to the heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS() and make use of it Created 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2006, 2007, 2008 Apple Inc. All rights reserved. 2 * Copyright (C) 2006, 2007, 2008 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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 #define WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(ClassName) \ 101 #define WTF_ALLOW_MOVE_AND_INIT_WITH_MEM_FUNCTIONS(ClassName) \
102 namespace WTF { \ 102 namespace WTF { \
103 template<> \ 103 template<> \
104 struct VectorTraits<ClassName> : VectorTraitsBase<ClassName> \ 104 struct VectorTraits<ClassName> : VectorTraitsBase<ClassName> \
105 { \ 105 { \
106 static const bool canInitializeWithMemset = true; \ 106 static const bool canInitializeWithMemset = true; \
107 static const bool canMoveWithMemcpy = true; \ 107 static const bool canMoveWithMemcpy = true; \
108 }; \ 108 }; \
109 } 109 }
110 110
111 #define WTF_ALLOW_INIT_WITH_MEM_FUNCTIONS(ClassName) \
112 namespace WTF { \
113 template<> \
tkent 2014/05/29 01:19:23 nit: We don't need to indent the content of namesp
sof 2014/05/29 10:03:53 yes, indentation is used for this entire file, so
114 struct VectorTraits<ClassName> : VectorTraitsBase<ClassName> \
115 { \
116 static const bool canInitializeWithMemset = true; \
117 }; \
118 }
119
111 using WTF::VectorTraits; 120 using WTF::VectorTraits;
112 using WTF::SimpleClassVectorTraits; 121 using WTF::SimpleClassVectorTraits;
113 122
114 #endif // WTF_VectorTraits_h 123 #endif // WTF_VectorTraits_h
OLDNEW
« Source/core/editing/VisibleSelection.h ('K') | « Source/core/xml/XMLSerializer.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698