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

Side by Side Diff: content/browser/loader/resource_dispatcher_host_impl.cc

Issue 411283002: Remove disable-embedded-shared-worker flag and shared worker process related codes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 4 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading 5 // See http://dev.chromium.org/developers/design-documents/multi-process-resourc e-loading
6 6
7 #include "content/browser/loader/resource_dispatcher_host_impl.h" 7 #include "content/browser/loader/resource_dispatcher_host_impl.h"
8 8
9 #include <algorithm> 9 #include <algorithm>
10 #include <set> 10 #include <set>
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 #include "content/browser/loader/throttling_resource_handler.h" 46 #include "content/browser/loader/throttling_resource_handler.h"
47 #include "content/browser/loader/upload_data_stream_builder.h" 47 #include "content/browser/loader/upload_data_stream_builder.h"
48 #include "content/browser/plugin_service_impl.h" 48 #include "content/browser/plugin_service_impl.h"
49 #include "content/browser/renderer_host/render_view_host_delegate.h" 49 #include "content/browser/renderer_host/render_view_host_delegate.h"
50 #include "content/browser/renderer_host/render_view_host_impl.h" 50 #include "content/browser/renderer_host/render_view_host_impl.h"
51 #include "content/browser/resource_context_impl.h" 51 #include "content/browser/resource_context_impl.h"
52 #include "content/browser/service_worker/service_worker_request_handler.h" 52 #include "content/browser/service_worker/service_worker_request_handler.h"
53 #include "content/browser/streams/stream.h" 53 #include "content/browser/streams/stream.h"
54 #include "content/browser/streams/stream_context.h" 54 #include "content/browser/streams/stream_context.h"
55 #include "content/browser/streams/stream_registry.h" 55 #include "content/browser/streams/stream_registry.h"
56 #include "content/browser/worker_host/worker_service_impl.h"
57 #include "content/browser/web_contents/web_contents_impl.h" 56 #include "content/browser/web_contents/web_contents_impl.h"
58 #include "content/common/appcache_interfaces.h" 57 #include "content/common/appcache_interfaces.h"
59 #include "content/common/resource_messages.h" 58 #include "content/common/resource_messages.h"
60 #include "content/common/ssl_status_serialization.h" 59 #include "content/common/ssl_status_serialization.h"
61 #include "content/common/view_messages.h" 60 #include "content/common/view_messages.h"
62 #include "content/public/browser/browser_thread.h" 61 #include "content/public/browser/browser_thread.h"
63 #include "content/public/browser/content_browser_client.h" 62 #include "content/public/browser/content_browser_client.h"
64 #include "content/public/browser/download_manager.h" 63 #include "content/public/browser/download_manager.h"
65 #include "content/public/browser/download_url_parameters.h" 64 #include "content/public/browser/download_url_parameters.h"
66 #include "content/public/browser/global_request_id.h" 65 #include "content/public/browser/global_request_id.h"
(...skipping 1929 matching lines...) Expand 10 before | Expand all | Expand 10 after
1996 1995
1997 // Add a flag to selectively bypass the data reduction proxy if the resource 1996 // Add a flag to selectively bypass the data reduction proxy if the resource
1998 // type is not an image. 1997 // type is not an image.
1999 if (request_data.resource_type != ResourceType::IMAGE) 1998 if (request_data.resource_type != ResourceType::IMAGE)
2000 load_flags |= net::LOAD_BYPASS_DATA_REDUCTION_PROXY; 1999 load_flags |= net::LOAD_BYPASS_DATA_REDUCTION_PROXY;
2001 2000
2002 return load_flags; 2001 return load_flags;
2003 } 2002 }
2004 2003
2005 } // namespace content 2004 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698