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

Side by Side Diff: sky/engine/core/dom/AttributeCollection.h

Issue 736373003: Fix sky include guards to match Chromium style (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Reran script after fixing missing break Created 6 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 | « sky/engine/core/dom/Attribute.h ('k') | sky/engine/core/dom/CharacterData.h » ('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) 2013 Google Inc. All rights reserved. 2 * Copyright (C) 2013 Google Inc. All rights reserved.
3 * Copyright (C) 2014 Apple Inc. All rights reserved. 3 * Copyright (C) 2014 Apple Inc. All rights reserved.
4 * Copyright (C) 2014 Samsung Electronics. All rights reserved. 4 * Copyright (C) 2014 Samsung Electronics. All rights reserved.
5 * 5 *
6 * Redistribution and use in source and binary forms, with or without 6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are 7 * modification, are permitted provided that the following conditions are
8 * met: 8 * met:
9 * 9 *
10 * * Redistributions of source code must retain the above copyright 10 * * Redistributions of source code must retain the above copyright
(...skipping 12 matching lines...) Expand all
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 */ 31 */
32 32
33 #ifndef AttributeCollection_h 33 #ifndef SKY_ENGINE_CORE_DOM_ATTRIBUTECOLLECTION_H_
34 #define AttributeCollection_h 34 #define SKY_ENGINE_CORE_DOM_ATTRIBUTECOLLECTION_H_
35 35
36 #include "sky/engine/core/dom/Attr.h" 36 #include "sky/engine/core/dom/Attr.h"
37 #include "sky/engine/core/dom/Attribute.h" 37 #include "sky/engine/core/dom/Attribute.h"
38 #include "sky/engine/wtf/Vector.h" 38 #include "sky/engine/wtf/Vector.h"
39 39
40 namespace blink { 40 namespace blink {
41 41
42 template <typename Container, typename ContainerMemberType = Container> 42 template <typename Container, typename ContainerMemberType = Container>
43 class AttributeCollectionGeneric { 43 class AttributeCollectionGeneric {
44 public: 44 public:
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 unsigned index = 0; 152 unsigned index = 0;
153 for (iterator it = begin(); it != end; ++it, ++index) { 153 for (iterator it = begin(); it != end; ++it, ++index) {
154 if (it->localName() == attr->name()) 154 if (it->localName() == attr->name())
155 return index; 155 return index;
156 } 156 }
157 return kNotFound; 157 return kNotFound;
158 } 158 }
159 159
160 } // namespace blink 160 } // namespace blink
161 161
162 #endif // AttributeCollection_h 162 #endif // SKY_ENGINE_CORE_DOM_ATTRIBUTECOLLECTION_H_
OLDNEW
« no previous file with comments | « sky/engine/core/dom/Attribute.h ('k') | sky/engine/core/dom/CharacterData.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698