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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 | 45 |
46 private: | 46 private: |
47 explicit HTMLMetaElement(Document&); | 47 explicit HTMLMetaElement(Document&); |
48 | 48 |
49 typedef void (HTMLMetaElement::*KeyValuePairCallback)(const String& key, con
st String& value, void* data); | 49 typedef void (HTMLMetaElement::*KeyValuePairCallback)(const String& key, con
st String& value, void* data); |
50 void processViewportKeyValuePair(const String& key, const String& value, voi
d* data); | 50 void processViewportKeyValuePair(const String& key, const String& value, voi
d* data); |
51 void parseContentAttribute(const String& content, KeyValuePairCallback, void
* data); | 51 void parseContentAttribute(const String& content, KeyValuePairCallback, void
* data); |
52 | 52 |
53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
54 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 54 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 55 virtual void didNotifySubtreeInsertionsToDocument() OVERRIDE; |
55 | 56 |
56 float parsePositiveNumber(const String& key, const String& value, bool* ok =
0); | 57 float parsePositiveNumber(const String& key, const String& value, bool* ok =
0); |
57 | 58 |
58 Length parseViewportValueAsLength(const String& key, const String& value); | 59 Length parseViewportValueAsLength(const String& key, const String& value); |
59 float parseViewportValueAsZoom(const String& key, const String& value); | 60 float parseViewportValueAsZoom(const String& key, const String& value); |
60 float parseViewportValueAsUserZoom(const String& key, const String& value); | 61 float parseViewportValueAsUserZoom(const String& key, const String& value); |
61 float parseViewportValueAsDPI(const String& key, const String& value); | 62 float parseViewportValueAsDPI(const String& key, const String& value); |
62 | 63 |
63 void reportViewportWarning(ViewportErrorCode, const String& replacement1, co
nst String& replacement2); | 64 void reportViewportWarning(ViewportErrorCode, const String& replacement1, co
nst String& replacement2); |
64 | 65 |
65 void process(); | 66 void process(); |
66 void processViewportContentAttribute(const String& content, ViewportDescript
ion::Type origin); | 67 void processViewportContentAttribute(const String& content, ViewportDescript
ion::Type origin); |
67 }; | 68 }; |
68 | 69 |
69 } // namespace WebCore | 70 } // namespace WebCore |
70 | 71 |
71 #endif | 72 #endif |
OLD | NEW |