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

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

Issue 1712743002: Revert "Make window.scroll properties relative to the layout viewport by default." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix failing test 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
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1473 switches::kEnableWebBluetooth, 1473 switches::kEnableWebBluetooth,
1474 switches::kEnableWebGLDraftExtensions, 1474 switches::kEnableWebGLDraftExtensions,
1475 switches::kEnableWebGLImageChromium, 1475 switches::kEnableWebGLImageChromium,
1476 switches::kEnableWebVR, 1476 switches::kEnableWebVR,
1477 switches::kEnableWheelGestures, 1477 switches::kEnableWheelGestures,
1478 switches::kExplicitlyAllowedPorts, 1478 switches::kExplicitlyAllowedPorts,
1479 switches::kForceDeviceScaleFactor, 1479 switches::kForceDeviceScaleFactor,
1480 switches::kForceDisplayList2dCanvas, 1480 switches::kForceDisplayList2dCanvas,
1481 switches::kForceOverlayFullscreenVideo, 1481 switches::kForceOverlayFullscreenVideo,
1482 switches::kFullMemoryCrashReport, 1482 switches::kFullMemoryCrashReport,
1483 switches::kInertVisualViewport,
1483 switches::kIPCConnectionTimeout, 1484 switches::kIPCConnectionTimeout,
1484 switches::kJavaScriptFlags, 1485 switches::kJavaScriptFlags,
1485 switches::kLoggingLevel, 1486 switches::kLoggingLevel,
1486 switches::kMainFrameResizesAreOrientationChanges, 1487 switches::kMainFrameResizesAreOrientationChanges,
1487 switches::kMaxUntiledLayerWidth, 1488 switches::kMaxUntiledLayerWidth,
1488 switches::kMaxUntiledLayerHeight, 1489 switches::kMaxUntiledLayerHeight,
1489 switches::kMemoryMetrics, 1490 switches::kMemoryMetrics,
1490 switches::kMojoLocalStorage, 1491 switches::kMojoLocalStorage,
1491 switches::kNoReferrers, 1492 switches::kNoReferrers,
1492 switches::kNoSandbox, 1493 switches::kNoSandbox,
(...skipping 1302 matching lines...) Expand 10 before | Expand all | Expand 10 after
2795 2796
2796 // Skip widgets in other processes. 2797 // Skip widgets in other processes.
2797 if (rvh->GetProcess()->GetID() != GetID()) 2798 if (rvh->GetProcess()->GetID() != GetID())
2798 continue; 2799 continue;
2799 2800
2800 rvh->OnWebkitPreferencesChanged(); 2801 rvh->OnWebkitPreferencesChanged();
2801 } 2802 }
2802 } 2803 }
2803 2804
2804 } // namespace content 2805 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698