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

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

Issue 1705323002: Follow on for gesture events generated by wheel events. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master_wheel_passive_listeners_3
Patch Set: Rebase; resolve merge conflict in unittest 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 1408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1419 switches::kDisableRTCSmoothnessAlgorithm, 1419 switches::kDisableRTCSmoothnessAlgorithm,
1420 switches::kDisableSeccompFilterSandbox, 1420 switches::kDisableSeccompFilterSandbox,
1421 switches::kDisableSharedWorkers, 1421 switches::kDisableSharedWorkers,
1422 switches::kDisableSmoothScrolling, 1422 switches::kDisableSmoothScrolling,
1423 switches::kDisableSpeechAPI, 1423 switches::kDisableSpeechAPI,
1424 switches::kDisableThreadedCompositing, 1424 switches::kDisableThreadedCompositing,
1425 switches::kDisableThreadedScrolling, 1425 switches::kDisableThreadedScrolling,
1426 switches::kDisableTouchAdjustment, 1426 switches::kDisableTouchAdjustment,
1427 switches::kDisableTouchDragDrop, 1427 switches::kDisableTouchDragDrop,
1428 switches::kDisableV8IdleTasks, 1428 switches::kDisableV8IdleTasks,
1429 switches::kDisableWheelGestures,
1429 switches::kDomAutomationController, 1430 switches::kDomAutomationController,
1430 switches::kEnableBlinkFeatures, 1431 switches::kEnableBlinkFeatures,
1431 switches::kEnableBrowserSideNavigation, 1432 switches::kEnableBrowserSideNavigation,
1432 switches::kEnableCredentialManagerAPI, 1433 switches::kEnableCredentialManagerAPI,
1433 switches::kEnableDisplayList2dCanvas, 1434 switches::kEnableDisplayList2dCanvas,
1434 switches::kEnableDistanceFieldText, 1435 switches::kEnableDistanceFieldText,
1435 switches::kEnableExperimentalCanvasFeatures, 1436 switches::kEnableExperimentalCanvasFeatures,
1436 switches::kEnableExperimentalWebPlatformFeatures, 1437 switches::kEnableExperimentalWebPlatformFeatures,
1437 switches::kEnableHeapProfiling, 1438 switches::kEnableHeapProfiling,
1438 switches::kEnableGPUClientLogging, 1439 switches::kEnableGPUClientLogging,
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after
2791 2792
2792 // Skip widgets in other processes. 2793 // Skip widgets in other processes.
2793 if (rvh->GetProcess()->GetID() != GetID()) 2794 if (rvh->GetProcess()->GetID() != GetID())
2794 continue; 2795 continue;
2795 2796
2796 rvh->OnWebkitPreferencesChanged(); 2797 rvh->OnWebkitPreferencesChanged();
2797 } 2798 }
2798 } 2799 }
2799 2800
2800 } // namespace content 2801 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698