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

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

Issue 2460943002: Lower ES3 capable requirement to GL 3.3 with extensions. (Closed)
Patch Set: address piman comment 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
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 1669 matching lines...) Expand 10 before | Expand all | Expand 10 after
1680 switches::kEnablePluginPlaceholderTesting, 1680 switches::kEnablePluginPlaceholderTesting,
1681 switches::kEnablePreciseMemoryInfo, 1681 switches::kEnablePreciseMemoryInfo,
1682 switches::kEnablePreferCompositingToLCDText, 1682 switches::kEnablePreferCompositingToLCDText,
1683 switches::kEnableRGBA4444Textures, 1683 switches::kEnableRGBA4444Textures,
1684 switches::kEnableSkiaBenchmarking, 1684 switches::kEnableSkiaBenchmarking,
1685 switches::kEnableSlimmingPaintV2, 1685 switches::kEnableSlimmingPaintV2,
1686 switches::kEnableSmoothScrolling, 1686 switches::kEnableSmoothScrolling,
1687 switches::kEnableStatsTable, 1687 switches::kEnableStatsTable,
1688 switches::kEnableThreadedCompositing, 1688 switches::kEnableThreadedCompositing,
1689 switches::kEnableTouchDragDrop, 1689 switches::kEnableTouchDragDrop,
1690 switches::kEnableUnsafeES3APIs,
1691 switches::kEnableUseZoomForDSF, 1690 switches::kEnableUseZoomForDSF,
1692 switches::kEnableViewport, 1691 switches::kEnableViewport,
1693 switches::kEnableVp9InMp4, 1692 switches::kEnableVp9InMp4,
1694 switches::kEnableVtune, 1693 switches::kEnableVtune,
1695 switches::kEnableWebFontsInterventionTrigger, 1694 switches::kEnableWebFontsInterventionTrigger,
1696 switches::kEnableWebFontsInterventionV2, 1695 switches::kEnableWebFontsInterventionV2,
1697 switches::kEnableWebGLDraftExtensions, 1696 switches::kEnableWebGLDraftExtensions,
1698 switches::kEnableWebGLImageChromium, 1697 switches::kEnableWebGLImageChromium,
1699 switches::kEnableWebVR, 1698 switches::kEnableWebVR,
1700 switches::kExplicitlyAllowedPorts, 1699 switches::kExplicitlyAllowedPorts,
(...skipping 1285 matching lines...) Expand 10 before | Expand all | Expand 10 after
2986 bad_message::ReceivedBadMessage(render_process_id, 2985 bad_message::ReceivedBadMessage(render_process_id,
2987 bad_message::RPH_MOJO_PROCESS_ERROR); 2986 bad_message::RPH_MOJO_PROCESS_ERROR);
2988 } 2987 }
2989 2988
2990 void RenderProcessHostImpl::CreateURLLoaderFactory( 2989 void RenderProcessHostImpl::CreateURLLoaderFactory(
2991 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) { 2990 mojo::InterfaceRequest<mojom::URLLoaderFactory> request) {
2992 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request)); 2991 URLLoaderFactoryImpl::Create(resource_message_filter_, std::move(request));
2993 } 2992 }
2994 2993
2995 } // namespace content 2994 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | content/browser/resources/gpu/info_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698