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

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

Issue 1278593004: Introduce ThreadedInputConnection behind a switch (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: added comment for call stack check Created 4 years, 10 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 1543 matching lines...) Expand 10 before | Expand all | Expand 10 after
1554 switches::kForceWebRtcIPHandlingPolicy, 1554 switches::kForceWebRtcIPHandlingPolicy,
1555 switches::kWebRtcMaxCaptureFramerate, 1555 switches::kWebRtcMaxCaptureFramerate,
1556 #endif 1556 #endif
1557 switches::kEnableLowEndDeviceMode, 1557 switches::kEnableLowEndDeviceMode,
1558 switches::kDisableLowEndDeviceMode, 1558 switches::kDisableLowEndDeviceMode,
1559 #if defined(OS_ANDROID) 1559 #if defined(OS_ANDROID)
1560 switches::kDisableWebAudio, 1560 switches::kDisableWebAudio,
1561 switches::kEnableUnifiedMediaPipeline, 1561 switches::kEnableUnifiedMediaPipeline,
1562 switches::kIPCSyncCompositing, 1562 switches::kIPCSyncCompositing,
1563 switches::kRendererWaitForJavaDebugger, 1563 switches::kRendererWaitForJavaDebugger,
1564 switches::kEnableImeThread,
1565 switches::kDisableImeThread,
1564 #endif 1566 #endif
1565 #if defined(OS_MACOSX) 1567 #if defined(OS_MACOSX)
1566 // Allow this to be set when invoking the browser and relayed along. 1568 // Allow this to be set when invoking the browser and relayed along.
1567 switches::kEnableSandboxLogging, 1569 switches::kEnableSandboxLogging,
1568 #endif 1570 #endif
1569 #if defined(OS_WIN) 1571 #if defined(OS_WIN)
1570 switches::kDisableDirectWrite, 1572 switches::kDisableDirectWrite,
1571 switches::kDisableWin32kRendererLockDown, 1573 switches::kDisableWin32kRendererLockDown,
1572 switches::kTraceExportEventsToETW, 1574 switches::kTraceExportEventsToETW,
1573 #endif 1575 #endif
(...skipping 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after
2794 2796
2795 // Skip widgets in other processes. 2797 // Skip widgets in other processes.
2796 if (rvh->GetProcess()->GetID() != GetID()) 2798 if (rvh->GetProcess()->GetID() != GetID())
2797 continue; 2799 continue;
2798 2800
2799 rvh->OnWebkitPreferencesChanged(); 2801 rvh->OnWebkitPreferencesChanged();
2800 } 2802 }
2801 } 2803 }
2802 2804
2803 } // namespace content 2805 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698