| OLD | NEW |
| 1 {% macro wrap_with_condition(condition) %} |
| 2 {%- if condition %} |
| 3 #if ENABLE({{condition}}) |
| 4 {{- caller() }} |
| 5 #endif |
| 6 {%- else %} |
| 7 {{- caller() }} |
| 8 {%- endif %} |
| 9 {%- endmacro %} |
| 10 |
| 11 {# |
| 12 FIXME: Do we need to put license blocks in generated files? |
| 13 #} |
| 14 {% macro license() -%} |
| 1 /* | 15 /* |
| 2 * Copyright (C) 2013 Google Inc. All rights reserved. | 16 * Copyright (C) 2013 Google Inc. All rights reserved. |
| 3 * | 17 * |
| 4 * Redistribution and use in source and binary forms, with or without | 18 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 19 * modification, are permitted provided that the following conditions are |
| 6 * met: | 20 * met: |
| 7 * | 21 * |
| 8 * * Redistributions of source code must retain the above copyright | 22 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 23 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 24 * * Redistributions in binary form must reproduce the above |
| 11 * copyright notice, this list of conditions and the following disclaimer | 25 * copyright notice, this list of conditions and the following disclaimer |
| 12 * in the documentation and/or other materials provided with the | 26 * in the documentation and/or other materials provided with the |
| 13 * distribution. | 27 * distribution. |
| 14 * * Neither the name of Google Inc. nor the names of its | 28 * * Neither the name of Google Inc. nor the names of its |
| 15 * contributors may be used to endorse or promote products derived from | 29 * contributors may be used to endorse or promote products derived from |
| 16 * this software without specific prior written permission. | 30 * this software without specific prior written permission. |
| 17 * | 31 * |
| 18 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 32 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 19 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 33 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 34 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 21 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 35 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 22 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 36 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 23 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 37 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 38 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 39 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 40 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 41 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 28 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 42 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 29 */ | 43 */ |
| 30 | 44 {%- endmacro %} |
| 31 #ifndef StringStatics_h | |
| 32 #define StringStatics_h | |
| 33 | |
| 34 namespace WTF { | |
| 35 | |
| 36 class StringStatics { | |
| 37 public: | |
| 38 static void init(); | |
| 39 | |
| 40 private: | |
| 41 StringStatics(); | |
| 42 }; | |
| 43 | |
| 44 } | |
| 45 | |
| 46 #endif | |
| OLD | NEW |