| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef {{"_".join(config.protocol.namespace)}}_Maybe_h | 5 #ifndef {{"_".join(config.protocol.namespace)}}_Maybe_h |
| 6 #define {{"_".join(config.protocol.namespace)}}_Maybe_h | 6 #define {{"_".join(config.protocol.namespace)}}_Maybe_h |
| 7 | 7 |
| 8 //#include "Forward.h" | 8 //#include "Forward.h" |
| 9 | 9 |
| 10 {% for namespace in config.protocol.namespace %} | 10 {% for namespace in config.protocol.namespace %} |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 Maybe() { } | 71 Maybe() { } |
| 72 Maybe(const String& value) : MaybeBase(value) { } | 72 Maybe(const String& value) : MaybeBase(value) { } |
| 73 using MaybeBase::operator=; | 73 using MaybeBase::operator=; |
| 74 }; | 74 }; |
| 75 | 75 |
| 76 {% for namespace in config.protocol.namespace %} | 76 {% for namespace in config.protocol.namespace %} |
| 77 } // namespace {{namespace}} | 77 } // namespace {{namespace}} |
| 78 {% endfor %} | 78 {% endfor %} |
| 79 | 79 |
| 80 #endif // !defined({{"_".join(config.protocol.namespace)}}_Maybe_h) | 80 #endif // !defined({{"_".join(config.protocol.namespace)}}_Maybe_h) |
| OLD | NEW |