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

Unified Diff: Source/core/css/WebKitCSSShaderValue.cpp

Issue 14672042: Prepare to add more initiator info to CachedResource(Request) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/WebKitCSSSVGDocumentValue.cpp ('k') | Source/core/dom/ProcessingInstruction.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/WebKitCSSShaderValue.cpp
diff --git a/Source/core/css/WebKitCSSShaderValue.cpp b/Source/core/css/WebKitCSSShaderValue.cpp
index 53903bfca94b67f3a985e46424f7730fd7bd8a60..3eab7851af1227b3806196a087efafa7877ada6b 100644
--- a/Source/core/css/WebKitCSSShaderValue.cpp
+++ b/Source/core/css/WebKitCSSShaderValue.cpp
@@ -66,8 +66,7 @@ StyleCachedShader* WebKitCSSShaderValue::cachedShader(CachedResourceLoader* load
if (!m_accessedShader) {
m_accessedShader = true;
- CachedResourceRequest request(ResourceRequest(completeURL(loader)));
- request.setInitiator(cachedResourceRequestInitiators().css);
+ CachedResourceRequest request(ResourceRequest(completeURL(loader)), cachedResourceRequestInitiators().css);
if (CachedResourceHandle<CachedShader> cachedShader = loader->requestShader(request))
m_shader = StyleCachedShader::create(cachedShader.get());
}
« no previous file with comments | « Source/core/css/WebKitCSSSVGDocumentValue.cpp ('k') | Source/core/dom/ProcessingInstruction.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698