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

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

Issue 2437943002: Ship WebBluetooth out of origin trial (Closed)
Patch Set: address more comments 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 | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/child/runtime_features.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 1671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1682 switches::kEnableSlimmingPaintV2, 1682 switches::kEnableSlimmingPaintV2,
1683 switches::kEnableSmoothScrolling, 1683 switches::kEnableSmoothScrolling,
1684 switches::kEnableStatsTable, 1684 switches::kEnableStatsTable,
1685 switches::kEnableThreadedCompositing, 1685 switches::kEnableThreadedCompositing,
1686 switches::kEnableTouchDragDrop, 1686 switches::kEnableTouchDragDrop,
1687 switches::kEnableUnsafeES3APIs, 1687 switches::kEnableUnsafeES3APIs,
1688 switches::kEnableUseZoomForDSF, 1688 switches::kEnableUseZoomForDSF,
1689 switches::kEnableViewport, 1689 switches::kEnableViewport,
1690 switches::kEnableVp9InMp4, 1690 switches::kEnableVp9InMp4,
1691 switches::kEnableVtune, 1691 switches::kEnableVtune,
1692 switches::kEnableWebBluetooth,
1693 switches::kEnableWebFontsInterventionTrigger, 1692 switches::kEnableWebFontsInterventionTrigger,
1694 switches::kEnableWebFontsInterventionV2, 1693 switches::kEnableWebFontsInterventionV2,
1695 switches::kEnableWebGLDraftExtensions, 1694 switches::kEnableWebGLDraftExtensions,
1696 switches::kEnableWebGLImageChromium, 1695 switches::kEnableWebGLImageChromium,
1697 switches::kEnableWebVR, 1696 switches::kEnableWebVR,
1698 switches::kExplicitlyAllowedPorts, 1697 switches::kExplicitlyAllowedPorts,
1699 switches::kForceDeviceScaleFactor, 1698 switches::kForceDeviceScaleFactor,
1700 switches::kForceDisplayList2dCanvas, 1699 switches::kForceDisplayList2dCanvas,
1701 switches::kEnableCanvas2dDynamicRenderingModeSwitching, 1700 switches::kEnableCanvas2dDynamicRenderingModeSwitching,
1702 switches::kForceOverlayFullscreenVideo, 1701 switches::kForceOverlayFullscreenVideo,
(...skipping 1281 matching lines...) Expand 10 before | Expand all | Expand 10 after
2984 bad_message::ReceivedBadMessage(render_process_id, 2983 bad_message::ReceivedBadMessage(render_process_id,
2985 bad_message::RPH_MOJO_PROCESS_ERROR); 2984 bad_message::RPH_MOJO_PROCESS_ERROR);
2986 } 2985 }
2987 2986
2988 void RenderProcessHostImpl::CreateURLLoaderFactory( 2987 void RenderProcessHostImpl::CreateURLLoaderFactory(
2989 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { 2988 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) {
2990 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); 2989 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request));
2991 } 2990 }
2992 2991
2993 } // namespace content 2992 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_impl.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698