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

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

Issue 14940009: Rename the "Experimental WebKit Features" flag. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase. Created 7 years, 5 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 | Annotate | Revision Log
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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 switches::kDomAutomationController, 894 switches::kDomAutomationController,
895 switches::kEnableAccessibilityLogging, 895 switches::kEnableAccessibilityLogging,
896 switches::kEnableBeginFrameScheduling, 896 switches::kEnableBeginFrameScheduling,
897 switches::kEnableBrowserInputController, 897 switches::kEnableBrowserInputController,
898 switches::kEnableBrowserPluginForAllViewTypes, 898 switches::kEnableBrowserPluginForAllViewTypes,
899 switches::kEnableDCHECK, 899 switches::kEnableDCHECK,
900 switches::kEnableDelegatedRenderer, 900 switches::kEnableDelegatedRenderer,
901 switches::kEnableEncryptedMedia, 901 switches::kEnableEncryptedMedia,
902 switches::kDisableLegacyEncryptedMedia, 902 switches::kDisableLegacyEncryptedMedia,
903 switches::kOverrideEncryptedMediaCanPlayType, 903 switches::kOverrideEncryptedMediaCanPlayType,
904 switches::kEnableExperimentalWebKitFeatures, 904 switches::kEnableExperimentalWebPlatformFeatures,
905 switches::kEnableFixedLayout, 905 switches::kEnableFixedLayout,
906 switches::kEnableDeferredImageDecoding, 906 switches::kEnableDeferredImageDecoding,
907 switches::kEnableGPUServiceLogging, 907 switches::kEnableGPUServiceLogging,
908 switches::kEnableGPUClientLogging, 908 switches::kEnableGPUClientLogging,
909 switches::kEnableGpuClientTracing, 909 switches::kEnableGpuClientTracing,
910 switches::kEnableGpuBenchmarking, 910 switches::kEnableGpuBenchmarking,
911 switches::kEnableMemoryBenchmarking, 911 switches::kEnableMemoryBenchmarking,
912 switches::kEnableSkiaBenchmarking, 912 switches::kEnableSkiaBenchmarking,
913 switches::kEnableLogging, 913 switches::kEnableLogging,
914 switches::kEnableSpeechSynthesis, 914 switches::kEnableSpeechSynthesis,
(...skipping 862 matching lines...) Expand 10 before | Expand all | Expand 10 after
1777 // Skip widgets in other processes. 1777 // Skip widgets in other processes.
1778 if (widgets[i]->GetProcess()->GetID() != GetID()) 1778 if (widgets[i]->GetProcess()->GetID() != GetID())
1779 continue; 1779 continue;
1780 1780
1781 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1781 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1782 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1782 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1783 } 1783 }
1784 } 1784 }
1785 1785
1786 } // namespace content 1786 } // namespace content
OLDNEW
« no previous file with comments | « chrome/renderer/chrome_render_process_observer.cc ('k') | content/browser/web_contents/web_contents_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698