| Index: third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.cpp b/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.cpp
|
| index 39fc6da6e1e9050d2d11c304db3f789790123301..d083c35cecfc15398eb40878fabc8125a8ddd41e 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLResourcePreloader.cpp
|
| @@ -88,8 +88,9 @@ void HTMLResourcePreloader::preload(
|
| if (resource && !resource->isLoaded() &&
|
| preload->resourceType() == Resource::CSSStyleSheet) {
|
| Settings* settings = m_document->settings();
|
| - if (settings && (settings->getCSSExternalScannerNoPreload() ||
|
| - settings->getCSSExternalScannerPreload()))
|
| + if (settings &&
|
| + (settings->getCSSExternalScannerNoPreload() ||
|
| + settings->getCSSExternalScannerPreload()))
|
| m_cssPreloaders.insert(new CSSPreloaderResourceClient(resource, this));
|
| }
|
| }
|
|
|