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

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

Issue 2047093002: Remove enable/disable wheel gestures setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@can_scroll_remove
Patch Set: Remove unused, uninitialized variable on mac causing occasional failure Created 4 years, 6 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::kDisableSeccompFilterSandbox, 1419 switches::kDisableSeccompFilterSandbox,
1420 switches::kDisableSharedWorkers, 1420 switches::kDisableSharedWorkers,
1421 switches::kDisableSmoothScrolling, 1421 switches::kDisableSmoothScrolling,
1422 switches::kDisableSpeechAPI, 1422 switches::kDisableSpeechAPI,
1423 switches::kDisableThreadedCompositing, 1423 switches::kDisableThreadedCompositing,
1424 switches::kDisableThreadedScrolling, 1424 switches::kDisableThreadedScrolling,
1425 switches::kDisableTouchAdjustment, 1425 switches::kDisableTouchAdjustment,
1426 switches::kDisableTouchDragDrop, 1426 switches::kDisableTouchDragDrop,
1427 switches::kDisableV8IdleTasks, 1427 switches::kDisableV8IdleTasks,
1428 switches::kDisableWebGLImageChromium, 1428 switches::kDisableWebGLImageChromium,
1429 switches::kDisableWheelGestures,
1430 switches::kDomAutomationController, 1429 switches::kDomAutomationController,
1431 switches::kEnableBlinkFeatures, 1430 switches::kEnableBlinkFeatures,
1432 switches::kEnableBrowserSideNavigation, 1431 switches::kEnableBrowserSideNavigation,
1433 switches::kEnableDisplayList2dCanvas, 1432 switches::kEnableDisplayList2dCanvas,
1434 switches::kEnableDistanceFieldText, 1433 switches::kEnableDistanceFieldText,
1435 switches::kEnableExperimentalCanvasFeatures, 1434 switches::kEnableExperimentalCanvasFeatures,
1436 switches::kEnableExperimentalWebPlatformFeatures, 1435 switches::kEnableExperimentalWebPlatformFeatures,
1437 switches::kEnableHeapProfiling, 1436 switches::kEnableHeapProfiling,
1438 switches::kEnableGPUClientLogging, 1437 switches::kEnableGPUClientLogging,
1439 switches::kEnableGpuClientTracing, 1438 switches::kEnableGpuClientTracing,
(...skipping 22 matching lines...) Expand all
1462 switches::kEnableUnsafeES3APIs, 1461 switches::kEnableUnsafeES3APIs,
1463 switches::kEnableUseZoomForDSF, 1462 switches::kEnableUseZoomForDSF,
1464 switches::kEnableViewport, 1463 switches::kEnableViewport,
1465 switches::kEnableVtune, 1464 switches::kEnableVtune,
1466 switches::kEnableWebBluetooth, 1465 switches::kEnableWebBluetooth,
1467 switches::kEnableWebFontsInterventionTrigger, 1466 switches::kEnableWebFontsInterventionTrigger,
1468 switches::kEnableWebFontsInterventionV2, 1467 switches::kEnableWebFontsInterventionV2,
1469 switches::kEnableWebGLDraftExtensions, 1468 switches::kEnableWebGLDraftExtensions,
1470 switches::kEnableWebGLImageChromium, 1469 switches::kEnableWebGLImageChromium,
1471 switches::kEnableWebVR, 1470 switches::kEnableWebVR,
1472 switches::kEnableWheelGestures,
1473 switches::kExplicitlyAllowedPorts, 1471 switches::kExplicitlyAllowedPorts,
1474 switches::kForceDeviceScaleFactor, 1472 switches::kForceDeviceScaleFactor,
1475 switches::kForceDisplayList2dCanvas, 1473 switches::kForceDisplayList2dCanvas,
1476 switches::kForceOverlayFullscreenVideo, 1474 switches::kForceOverlayFullscreenVideo,
1477 switches::kFullMemoryCrashReport, 1475 switches::kFullMemoryCrashReport,
1478 switches::kInertVisualViewport, 1476 switches::kInertVisualViewport,
1479 switches::kIPCConnectionTimeout, 1477 switches::kIPCConnectionTimeout,
1480 switches::kJavaScriptFlags, 1478 switches::kJavaScriptFlags,
1481 switches::kLoggingLevel, 1479 switches::kLoggingLevel,
1482 switches::kMainFrameResizesAreOrientationChanges, 1480 switches::kMainFrameResizesAreOrientationChanges,
(...skipping 1319 matching lines...) Expand 10 before | Expand all | Expand 10 after
2802 2800
2803 // Skip widgets in other processes. 2801 // Skip widgets in other processes.
2804 if (rvh->GetProcess()->GetID() != GetID()) 2802 if (rvh->GetProcess()->GetID() != GetID())
2805 continue; 2803 continue;
2806 2804
2807 rvh->OnWebkitPreferencesChanged(); 2805 rvh->OnWebkitPreferencesChanged();
2808 } 2806 }
2809 } 2807 }
2810 2808
2811 } // namespace content 2809 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698