Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(672)

Side by Side Diff: Source/core/fetch/CSSStyleSheetResource.cpp

Issue 137293005: One more instance of StringBuilder::Append replacing String::Append. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/dom/CharacterData.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 Apple Computer, Inc. 6 Copyright (C) 2004, 2005, 2006 Apple Computer, Inc.
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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after
91 String sheetText = m_decoder->decode(m_data->data(), m_data->size()); 91 String sheetText = m_decoder->decode(m_data->data(), m_data->size());
92 sheetText = sheetText + m_decoder->flush(); 92 sheetText = sheetText + m_decoder->flush();
93 return sheetText; 93 return sheetText;
94 } 94 }
95 95
96 void CSSStyleSheetResource::checkNotify() 96 void CSSStyleSheetResource::checkNotify()
97 { 97 {
98 // Decode the data to find out the encoding and keep the sheet text around d uring checkNotify() 98 // Decode the data to find out the encoding and keep the sheet text around d uring checkNotify()
99 if (m_data) { 99 if (m_data) {
100 m_decodedSheetText = m_decoder->decode(m_data->data(), m_data->size()); 100 m_decodedSheetText = m_decoder->decode(m_data->data(), m_data->size());
101 m_decodedSheetText.append(m_decoder->flush()); 101 m_decodedSheetText = m_decodedSheetText + m_decoder->flush();
102 } 102 }
103 103
104 ResourceClientWalker<StyleSheetResourceClient> w(m_clients); 104 ResourceClientWalker<StyleSheetResourceClient> w(m_clients);
105 while (StyleSheetResourceClient* c = w.next()) 105 while (StyleSheetResourceClient* c = w.next())
106 c->setCSSStyleSheet(m_resourceRequest.url(), m_response.url(), m_decoder ->encoding().name(), this); 106 c->setCSSStyleSheet(m_resourceRequest.url(), m_response.url(), m_decoder ->encoding().name(), this);
107 // Clear the decoded text as it is unlikely to be needed immediately again a nd is cheap to regenerate. 107 // Clear the decoded text as it is unlikely to be needed immediately again a nd is cheap to regenerate.
108 m_decodedSheetText = String(); 108 m_decodedSheetText = String();
109 } 109 }
110 110
111 bool CSSStyleSheetResource::canUseSheet(bool enforceMIMEType, bool* hasValidMIME Type) const 111 bool CSSStyleSheetResource::canUseSheet(bool enforceMIMEType, bool* hasValidMIME Type) const
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
174 174
175 if (m_parsedStyleSheetCache) 175 if (m_parsedStyleSheetCache)
176 m_parsedStyleSheetCache->removedFromMemoryCache(); 176 m_parsedStyleSheetCache->removedFromMemoryCache();
177 m_parsedStyleSheetCache = sheet; 177 m_parsedStyleSheetCache = sheet;
178 m_parsedStyleSheetCache->addedToMemoryCache(); 178 m_parsedStyleSheetCache->addedToMemoryCache();
179 179
180 setDecodedSize(m_parsedStyleSheetCache->estimatedSizeInBytes()); 180 setDecodedSize(m_parsedStyleSheetCache->estimatedSizeInBytes());
181 } 181 }
182 182
183 } 183 }
OLDNEW
« no previous file with comments | « Source/core/dom/CharacterData.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698