Index: chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
diff --git a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
index 9c5a09c383c01c09a07974b386de80b50a685662..6d953ff0202277f9ef1bfaabf36b503f6f6136d0 100644 |
--- a/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
+++ b/chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.cc |
@@ -5,6 +5,7 @@ |
#include "chrome/browser/renderer_host/chrome_resource_dispatcher_host_delegate.h" |
#include <string> |
+#include <vector> |
#include "base/base64.h" |
#include "base/logging.h" |
@@ -247,7 +248,8 @@ void AppendComponentUpdaterThrottles( |
if (crx_id) { |
// We got a component we need to install, so throttle the resource |
// until the component is installed. |
- throttles->push_back(cus->GetOnDemandResourceThrottle(request, crx_id)); |
+ throttles->push_back( |
+ cus->GetOnDemandUpdater().GetOnDemandResourceThrottle(request, crx_id)); |
} |
} |