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

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

Issue 19220002: [WIP] BufferedInputRouter (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix client assignment Created 7 years, 3 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 (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 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
884 switches::kDisableSCTPDataChannels, 884 switches::kDisableSCTPDataChannels,
885 #endif 885 #endif
886 switches::kEnableWebAnimationsCSS, 886 switches::kEnableWebAnimationsCSS,
887 switches::kEnableWebAnimationsSVG, 887 switches::kEnableWebAnimationsSVG,
888 switches::kEnableWebMIDI, 888 switches::kEnableWebMIDI,
889 switches::kEnableExperimentalCanvasFeatures, 889 switches::kEnableExperimentalCanvasFeatures,
890 switches::kEnableExperimentalWebSocket, 890 switches::kEnableExperimentalWebSocket,
891 switches::kDomAutomationController, 891 switches::kDomAutomationController,
892 switches::kEnableAccessibilityLogging, 892 switches::kEnableAccessibilityLogging,
893 switches::kEnableBeginFrameScheduling, 893 switches::kEnableBeginFrameScheduling,
894 switches::kEnableBrowserInputController,
895 switches::kEnableBrowserPluginForAllViewTypes, 894 switches::kEnableBrowserPluginForAllViewTypes,
895 switches::kEnableBufferedInputRouter,
896 switches::kEnableDCHECK, 896 switches::kEnableDCHECK,
897 switches::kEnableDelegatedRenderer, 897 switches::kEnableDelegatedRenderer,
898 switches::kEnableEncryptedMedia, 898 switches::kEnableEncryptedMedia,
899 switches::kDisableLegacyEncryptedMedia, 899 switches::kDisableLegacyEncryptedMedia,
900 switches::kOverrideEncryptedMediaCanPlayType, 900 switches::kOverrideEncryptedMediaCanPlayType,
901 #if defined(OS_ANDROID) 901 #if defined(OS_ANDROID)
902 switches::kMediaDrmEnableNonCompositing, 902 switches::kMediaDrmEnableNonCompositing,
903 #endif 903 #endif
904 switches::kEnableExperimentalWebPlatformFeatures, 904 switches::kEnableExperimentalWebPlatformFeatures,
905 switches::kEnableFixedLayout, 905 switches::kEnableFixedLayout,
(...skipping 873 matching lines...) Expand 10 before | Expand all | Expand 10 after
1779 // Skip widgets in other processes. 1779 // Skip widgets in other processes.
1780 if (widgets[i]->GetProcess()->GetID() != GetID()) 1780 if (widgets[i]->GetProcess()->GetID() != GetID())
1781 continue; 1781 continue;
1782 1782
1783 RenderViewHost* rvh = RenderViewHost::From(widgets[i]); 1783 RenderViewHost* rvh = RenderViewHost::From(widgets[i]);
1784 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1784 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1785 } 1785 }
1786 } 1786 }
1787 1787
1788 } // namespace content 1788 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698