| 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 * (C) 2001 Dirk Mueller (mueller@kde.org) | 4 * (C) 2001 Dirk Mueller (mueller@kde.org) |
| 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 5 * Copyright (C) 2003, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
| 6 * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com) | 6 * Copyright (C) 2009 Rob Buis (rwlbuis@gmail.com) |
| 7 * Copyright (C) 2011 Google Inc. All rights reserved. | 7 * Copyright (C) 2011 Google Inc. All rights reserved. |
| 8 * | 8 * |
| 9 * This library is free software; you can redistribute it and/or | 9 * This library is free software; you can redistribute it and/or |
| 10 * modify it under the terms of the GNU Library General Public | 10 * modify it under the terms of the GNU Library General Public |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 #include "core/inspector/ConsoleMessage.h" | 49 #include "core/inspector/ConsoleMessage.h" |
| 50 #include "core/loader/FrameLoader.h" | 50 #include "core/loader/FrameLoader.h" |
| 51 #include "core/loader/FrameLoaderClient.h" | 51 #include "core/loader/FrameLoaderClient.h" |
| 52 #include "core/loader/NetworkHintsInterface.h" | 52 #include "core/loader/NetworkHintsInterface.h" |
| 53 #include "core/style/StyleInheritedData.h" | 53 #include "core/style/StyleInheritedData.h" |
| 54 #include "platform/ContentType.h" | 54 #include "platform/ContentType.h" |
| 55 #include "platform/Histogram.h" | 55 #include "platform/Histogram.h" |
| 56 #include "platform/MIMETypeRegistry.h" | 56 #include "platform/MIMETypeRegistry.h" |
| 57 #include "platform/RuntimeEnabledFeatures.h" | 57 #include "platform/RuntimeEnabledFeatures.h" |
| 58 #include "wtf/StdLibExtras.h" | 58 #include "wtf/StdLibExtras.h" |
| 59 #include "wtf/text/StringToNumber.h" |
| 59 | 60 |
| 60 namespace blink { | 61 namespace blink { |
| 61 | 62 |
| 62 using namespace HTMLNames; | 63 using namespace HTMLNames; |
| 63 | 64 |
| 64 template <typename CharacterType> | 65 template <typename CharacterType> |
| 65 static void parseSizes(const CharacterType* value, unsigned length, Vector<IntSi
ze>& iconSizes) | 66 static void parseSizes(const CharacterType* value, unsigned length, Vector<IntSi
ze>& iconSizes) |
| 66 { | 67 { |
| 67 enum State { | 68 enum State { |
| 68 ParseStart, | 69 ParseStart, |
| (...skipping 717 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 } | 787 } |
| 787 | 788 |
| 788 DEFINE_TRACE(LinkStyle) | 789 DEFINE_TRACE(LinkStyle) |
| 789 { | 790 { |
| 790 visitor->trace(m_sheet); | 791 visitor->trace(m_sheet); |
| 791 LinkResource::trace(visitor); | 792 LinkResource::trace(visitor); |
| 792 ResourceOwner<StyleSheetResource>::trace(visitor); | 793 ResourceOwner<StyleSheetResource>::trace(visitor); |
| 793 } | 794 } |
| 794 | 795 |
| 795 } // namespace blink | 796 } // namespace blink |
| OLD | NEW |