| OLD | NEW | 
|---|
| 1 /* | 1 /* | 
| 2     Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 2     Copyright (C) 1998 Lars Knoll (knoll@mpi-hd.mpg.de) | 
| 3     Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 3     Copyright (C) 2001 Dirk Mueller (mueller@kde.org) | 
| 4     Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 4     Copyright (C) 2002 Waldo Bastian (bastian@kde.org) | 
| 5     Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 5     Copyright (C) 2006 Samuel Weinig (sam.weinig@gmail.com) | 
| 6     Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 6     Copyright (C) 2004, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved. | 
| 7 | 7 | 
| 8     This library is free software; you can redistribute it and/or | 8     This library is free software; you can redistribute it and/or | 
| 9     modify it under the terms of the GNU Library General Public | 9     modify it under the terms of the GNU Library General Public | 
| 10     License as published by the Free Software Foundation; either | 10     License as published by the Free Software Foundation; either | 
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 63 | 63 | 
| 64 String XSLStyleSheetResource::encoding() const | 64 String XSLStyleSheetResource::encoding() const | 
| 65 { | 65 { | 
| 66     return m_decoder->encoding().name(); | 66     return m_decoder->encoding().name(); | 
| 67 } | 67 } | 
| 68 | 68 | 
| 69 void XSLStyleSheetResource::checkNotify() | 69 void XSLStyleSheetResource::checkNotify() | 
| 70 { | 70 { | 
| 71     if (m_data.get()) { | 71     if (m_data.get()) { | 
| 72         m_sheet = m_decoder->decode(m_data->data(), encodedSize()); | 72         m_sheet = m_decoder->decode(m_data->data(), encodedSize()); | 
| 73         m_sheet.append(m_decoder->flush()); | 73         m_sheet = m_sheet + m_decoder->flush(); | 
| 74     } | 74     } | 
| 75 | 75 | 
| 76     ResourceClientWalker<StyleSheetResourceClient> w(m_clients); | 76     ResourceClientWalker<StyleSheetResourceClient> w(m_clients); | 
| 77     while (StyleSheetResourceClient* c = w.next()) | 77     while (StyleSheetResourceClient* c = w.next()) | 
| 78         c->setXSLStyleSheet(m_resourceRequest.url(), m_response.url(), m_sheet); | 78         c->setXSLStyleSheet(m_resourceRequest.url(), m_response.url(), m_sheet); | 
| 79 } | 79 } | 
| 80 | 80 | 
| 81 } // namespace WebCore | 81 } // namespace WebCore | 
| OLD | NEW | 
|---|