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

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

Issue 57463011: Don't send the renderer flags that it doesn't use. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 // 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 884 matching lines...) Expand 10 before | Expand all | Expand 10 after
895 switches::kDisableDeadlineScheduling, 895 switches::kDisableDeadlineScheduling,
896 switches::kDisableDelegatedRenderer, 896 switches::kDisableDelegatedRenderer,
897 switches::kDisableDesktopNotifications, 897 switches::kDisableDesktopNotifications,
898 switches::kDisableDeviceMotion, 898 switches::kDisableDeviceMotion,
899 switches::kDisableDeviceOrientation, 899 switches::kDisableDeviceOrientation,
900 switches::kDisableDirectNPAPIRequests, 900 switches::kDisableDirectNPAPIRequests,
901 switches::kDisableFileSystem, 901 switches::kDisableFileSystem,
902 switches::kDisableFiltersOverIPC, 902 switches::kDisableFiltersOverIPC,
903 switches::kDisableFullScreen, 903 switches::kDisableFullScreen,
904 switches::kDisableGeolocation, 904 switches::kDisableGeolocation,
905 switches::kDisableGLMultisampling,
906 switches::kDisableGpu, 905 switches::kDisableGpu,
907 switches::kDisableGpuCompositing, 906 switches::kDisableGpuCompositing,
908 switches::kDisableGpuVsync, 907 switches::kDisableGpuVsync,
909 switches::kDisableHistogramCustomizer, 908 switches::kDisableHistogramCustomizer,
910 switches::kDisableLocalStorage, 909 switches::kDisableLocalStorage,
911 switches::kDisableLogging, 910 switches::kDisableLogging,
912 switches::kDisablePinch, 911 switches::kDisablePinch,
913 switches::kDisablePrefixedEncryptedMedia, 912 switches::kDisablePrefixedEncryptedMedia,
914 switches::kDisableSeccompFilterSandbox, 913 switches::kDisableSeccompFilterSandbox,
915 switches::kDisableSessionStorage, 914 switches::kDisableSessionStorage,
(...skipping 919 matching lines...) Expand 10 before | Expand all | Expand 10 after
1835 // Skip widgets in other processes. 1834 // Skip widgets in other processes.
1836 if (widget->GetProcess()->GetID() != GetID()) 1835 if (widget->GetProcess()->GetID() != GetID())
1837 continue; 1836 continue;
1838 1837
1839 RenderViewHost* rvh = RenderViewHost::From(widget); 1838 RenderViewHost* rvh = RenderViewHost::From(widget);
1840 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1839 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1841 } 1840 }
1842 } 1841 }
1843 1842
1844 } // namespace content 1843 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/gpu/gpu_data_manager_impl_private.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698