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

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

Issue 1784743002: Migrate *-ime-thread switches to feature API (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@2661
Patch Set: Created 4 years, 9 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
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 1547 matching lines...) Expand 10 before | Expand all | Expand 10 after
1558 switches::kEnforceWebRtcIPPermissionCheck, 1558 switches::kEnforceWebRtcIPPermissionCheck,
1559 switches::kForceWebRtcIPHandlingPolicy, 1559 switches::kForceWebRtcIPHandlingPolicy,
1560 switches::kWebRtcMaxCaptureFramerate, 1560 switches::kWebRtcMaxCaptureFramerate,
1561 #endif 1561 #endif
1562 switches::kEnableLowEndDeviceMode, 1562 switches::kEnableLowEndDeviceMode,
1563 switches::kDisableLowEndDeviceMode, 1563 switches::kDisableLowEndDeviceMode,
1564 #if defined(OS_ANDROID) 1564 #if defined(OS_ANDROID)
1565 switches::kEnableUnifiedMediaPipeline, 1565 switches::kEnableUnifiedMediaPipeline,
1566 switches::kIPCSyncCompositing, 1566 switches::kIPCSyncCompositing,
1567 switches::kRendererWaitForJavaDebugger, 1567 switches::kRendererWaitForJavaDebugger,
1568 switches::kEnableImeThread,
1569 switches::kDisableImeThread,
1570 #endif 1568 #endif
1571 #if defined(OS_MACOSX) 1569 #if defined(OS_MACOSX)
1572 // Allow this to be set when invoking the browser and relayed along. 1570 // Allow this to be set when invoking the browser and relayed along.
1573 switches::kEnableSandboxLogging, 1571 switches::kEnableSandboxLogging,
1574 #endif 1572 #endif
1575 #if defined(OS_WIN) 1573 #if defined(OS_WIN)
1576 switches::kDisableDirectWrite, 1574 switches::kDisableDirectWrite,
1577 switches::kDisableWin32kRendererLockDown, 1575 switches::kDisableWin32kRendererLockDown,
1578 switches::kTraceExportEventsToETW, 1576 switches::kTraceExportEventsToETW,
1579 #endif 1577 #endif
(...skipping 1238 matching lines...) Expand 10 before | Expand all | Expand 10 after
2818 2816
2819 // Skip widgets in other processes. 2817 // Skip widgets in other processes.
2820 if (rvh->GetProcess()->GetID() != GetID()) 2818 if (rvh->GetProcess()->GetID() != GetID())
2821 continue; 2819 continue;
2822 2820
2823 rvh->OnWebkitPreferencesChanged(); 2821 rvh->OnWebkitPreferencesChanged();
2824 } 2822 }
2825 } 2823 }
2826 2824
2827 } // namespace content 2825 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698