| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
| 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
| 4 * Copyright (C) 2003, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2010 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 bool reportWarnings, | 65 bool reportWarnings, |
| 66 const String& key, | 66 const String& key, |
| 67 const String& value, | 67 const String& value, |
| 68 bool viewportMetaZeroValuesQuirk, | 68 bool viewportMetaZeroValuesQuirk, |
| 69 void* data); | 69 void* data); |
| 70 static void parseContentAttribute(const String& content, | 70 static void parseContentAttribute(const String& content, |
| 71 void* data, | 71 void* data, |
| 72 Document*, | 72 Document*, |
| 73 bool viewportMetaZeroValuesQuirk); | 73 bool viewportMetaZeroValuesQuirk); |
| 74 | 74 |
| 75 void parseAttribute(const QualifiedName&, | 75 void parseAttribute(const AttributeModificationParams&) override; |
| 76 const AtomicString&, | |
| 77 const AtomicString&) override; | |
| 78 InsertionNotificationRequest insertedInto(ContainerNode*) override; | 76 InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 79 void didNotifySubtreeInsertionsToDocument() override; | 77 void didNotifySubtreeInsertionsToDocument() override; |
| 80 | 78 |
| 81 static float parsePositiveNumber(Document*, | 79 static float parsePositiveNumber(Document*, |
| 82 bool reportWarnings, | 80 bool reportWarnings, |
| 83 const String& key, | 81 const String& key, |
| 84 const String& value, | 82 const String& value, |
| 85 bool* ok = 0); | 83 bool* ok = 0); |
| 86 | 84 |
| 87 static Length parseViewportValueAsLength(Document*, | 85 static Length parseViewportValueAsLength(Document*, |
| (...skipping 23 matching lines...) Expand all Loading... |
| 111 const String& replacement2); | 109 const String& replacement2); |
| 112 | 110 |
| 113 void process(); | 111 void process(); |
| 114 void processViewportContentAttribute(const String& content, | 112 void processViewportContentAttribute(const String& content, |
| 115 ViewportDescription::Type origin); | 113 ViewportDescription::Type origin); |
| 116 }; | 114 }; |
| 117 | 115 |
| 118 } // namespace blink | 116 } // namespace blink |
| 119 | 117 |
| 120 #endif // HTMLMetaElement_h | 118 #endif // HTMLMetaElement_h |
| OLD | NEW |