Upstream version 11.39.250.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / extensions / extension_resource_protocols.cc
index f940de6..ff59c75 100644 (file)
@@ -35,6 +35,9 @@ class ExtensionResourcesJob : public net::URLRequestFileJob {
 
   virtual void Start() OVERRIDE;
 
+  virtual bool IsRedirectResponse(GURL* location,
+                                  int* http_status_code) override;
+
  protected:
   virtual ~ExtensionResourcesJob() {}
 
@@ -57,6 +60,11 @@ void ExtensionResourcesJob::Start() {
           weak_ptr_factory_.GetWeakPtr()));
 }
 
+bool ExtensionResourcesJob::IsRedirectResponse(GURL* location,
+                                               int* http_status_code) {
+  return false;
+}
+
 void ExtensionResourcesJob::ResolvePathDone(
     const base::FilePath& resolved_path) {
   DCHECK(thread_checker_.CalledOnValidThread());