Chromium Code Reviews| 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, 2008, 2010 Apple Inc. All rights reserved. | 4 * Copyright (C) 2003, 2008, 2010 Apple Inc. All rights reserved. |
| 5 * Copyright (C) 2011 Google Inc. All rights reserved. | 5 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 137 const Vector<IntSize>& iconSizes() const; | 137 const Vector<IntSize>& iconSizes() const; |
| 138 | 138 |
| 139 bool async() const; | 139 bool async() const; |
| 140 | 140 |
| 141 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0 ; } | 141 CSSStyleSheet* sheet() const { return linkStyle() ? linkStyle()->sheet() : 0 ; } |
| 142 Document* import() const; | 142 Document* import() const; |
| 143 | 143 |
| 144 bool styleSheetIsLoading() const; | 144 bool styleSheetIsLoading() const; |
| 145 | 145 |
| 146 bool isImport() const { return linkImport(); } | 146 bool isImport() const { return linkImport(); } |
| 147 bool importOwnsLoader() const; | |
|
adamk
2014/04/17 21:26:31
This one is pretty recent, CCing morrita in case i
| |
| 148 bool isDisabled() const { return linkStyle() && linkStyle()->isDisabled(); } | 147 bool isDisabled() const { return linkStyle() && linkStyle()->isDisabled(); } |
| 149 bool isEnabledViaScript() const { return linkStyle() && linkStyle()->isEnabl edViaScript(); } | 148 bool isEnabledViaScript() const { return linkStyle() && linkStyle()->isEnabl edViaScript(); } |
| 150 DOMSettableTokenList* sizes() const; | 149 DOMSettableTokenList* sizes() const; |
| 151 | 150 |
| 152 void dispatchPendingEvent(LinkEventSender*); | 151 void dispatchPendingEvent(LinkEventSender*); |
| 153 void scheduleEvent(); | 152 void scheduleEvent(); |
| 154 void dispatchEventImmediately(); | 153 void dispatchEventImmediately(); |
| 155 static void dispatchPendingLoadEvents(); | 154 static void dispatchPendingLoadEvents(); |
| 156 | 155 |
| 157 // From LinkLoaderClient | 156 // From LinkLoaderClient |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 208 Vector<IntSize> m_iconSizes; | 207 Vector<IntSize> m_iconSizes; |
| 209 LinkRelAttribute m_relAttribute; | 208 LinkRelAttribute m_relAttribute; |
| 210 | 209 |
| 211 bool m_createdByParser; | 210 bool m_createdByParser; |
| 212 bool m_isInShadowTree; | 211 bool m_isInShadowTree; |
| 213 }; | 212 }; |
| 214 | 213 |
| 215 } //namespace | 214 } //namespace |
| 216 | 215 |
| 217 #endif | 216 #endif |
| OLD | NEW |