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

Side by Side Diff: content/browser/renderer_host/render_process_host_impl.cc

Issue 2443983002: Revert of Use the serviceworker with mojo by default (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « no previous file | content/browser/service_worker/embedded_worker_instance_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 // Represents the browser side of the browser <--> renderer communication 5 // Represents the browser side of the browser <--> renderer communication
6 // channel. There will be one RenderProcessHost per renderer process. 6 // channel. There will be one RenderProcessHost per renderer process.
7 7
8 #include "content/browser/renderer_host/render_process_host_impl.h" 8 #include "content/browser/renderer_host/render_process_host_impl.h"
9 9
10 #include <algorithm> 10 #include <algorithm>
(...skipping 1628 matching lines...) Expand 10 before | Expand all | Expand 10 after
1639 switches::kDisableGpuCompositing, 1639 switches::kDisableGpuCompositing,
1640 switches::kDisableGpuMemoryBufferVideoFrames, 1640 switches::kDisableGpuMemoryBufferVideoFrames,
1641 switches::kDisableGpuVsync, 1641 switches::kDisableGpuVsync,
1642 switches::kDisableLowResTiling, 1642 switches::kDisableLowResTiling,
1643 switches::kDisableHistogramCustomizer, 1643 switches::kDisableHistogramCustomizer,
1644 switches::kDisableIconNtp, 1644 switches::kDisableIconNtp,
1645 switches::kDisableLCDText, 1645 switches::kDisableLCDText,
1646 switches::kDisableLocalStorage, 1646 switches::kDisableLocalStorage,
1647 switches::kDisableLogging, 1647 switches::kDisableLogging,
1648 switches::kDisableMediaSuspend, 1648 switches::kDisableMediaSuspend,
1649 switches::kDisableMojoServiceWorker,
1650 switches::kDisableNotifications, 1649 switches::kDisableNotifications,
1651 switches::kDisableOverlayScrollbar, 1650 switches::kDisableOverlayScrollbar,
1652 switches::kDisablePepper3DImageChromium, 1651 switches::kDisablePepper3DImageChromium,
1653 switches::kDisablePermissionsAPI, 1652 switches::kDisablePermissionsAPI,
1654 switches::kDisablePresentationAPI, 1653 switches::kDisablePresentationAPI,
1655 switches::kDisablePinch, 1654 switches::kDisablePinch,
1656 switches::kDisableRGBA4444Textures, 1655 switches::kDisableRGBA4444Textures,
1657 switches::kDisableRTCSmoothnessAlgorithm, 1656 switches::kDisableRTCSmoothnessAlgorithm,
1658 switches::kDisableSeccompFilterSandbox, 1657 switches::kDisableSeccompFilterSandbox,
1659 switches::kDisableSharedWorkers, 1658 switches::kDisableSharedWorkers,
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
1717 switches::kInertVisualViewport, 1716 switches::kInertVisualViewport,
1718 switches::kIPCConnectionTimeout, 1717 switches::kIPCConnectionTimeout,
1719 switches::kIsRunningInMash, 1718 switches::kIsRunningInMash,
1720 switches::kJavaScriptFlags, 1719 switches::kJavaScriptFlags,
1721 switches::kLoggingLevel, 1720 switches::kLoggingLevel,
1722 switches::kMainFrameResizesAreOrientationChanges, 1721 switches::kMainFrameResizesAreOrientationChanges,
1723 switches::kMaxUntiledLayerWidth, 1722 switches::kMaxUntiledLayerWidth,
1724 switches::kMaxUntiledLayerHeight, 1723 switches::kMaxUntiledLayerHeight,
1725 switches::kMemoryMetrics, 1724 switches::kMemoryMetrics,
1726 switches::kMojoLocalStorage, 1725 switches::kMojoLocalStorage,
1726 switches::kMojoServiceWorker,
1727 switches::kMSEAudioBufferSizeLimit, 1727 switches::kMSEAudioBufferSizeLimit,
1728 switches::kMSEVideoBufferSizeLimit, 1728 switches::kMSEVideoBufferSizeLimit,
1729 switches::kNoReferrers, 1729 switches::kNoReferrers,
1730 switches::kNoSandbox, 1730 switches::kNoSandbox,
1731 switches::kOverridePluginPowerSaverForTesting, 1731 switches::kOverridePluginPowerSaverForTesting,
1732 switches::kPassiveListenersDefault, 1732 switches::kPassiveListenersDefault,
1733 switches::kPpapiInProcess, 1733 switches::kPpapiInProcess,
1734 switches::kProfilerTiming, 1734 switches::kProfilerTiming,
1735 switches::kReducedReferrerGranularity, 1735 switches::kReducedReferrerGranularity,
1736 switches::kReduceSecurityForTesting, 1736 switches::kReduceSecurityForTesting,
(...skipping 1266 matching lines...) Expand 10 before | Expand all | Expand 10 after
3003 bad_message::ReceivedBadMessage(render_process_id, 3003 bad_message::ReceivedBadMessage(render_process_id,
3004 bad_message::RPH_MOJO_PROCESS_ERROR); 3004 bad_message::RPH_MOJO_PROCESS_ERROR);
3005 } 3005 }
3006 3006
3007 void RenderProcessHostImpl::CreateURLLoaderFactory( 3007 void RenderProcessHostImpl::CreateURLLoaderFactory(
3008 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { 3008 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) {
3009 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); 3009 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request));
3010 } 3010 }
3011 3011
3012 } // namespace content 3012 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/service_worker/embedded_worker_instance_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698