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

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

Issue 2175163005: Add flag to hide scrollbars completely. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add tests for scrollbar behavior without animator. Created 4 years, 4 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 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after
1431 switches::kEnableBrowserSideNavigation, 1431 switches::kEnableBrowserSideNavigation,
1432 switches::kEnableDisplayList2dCanvas, 1432 switches::kEnableDisplayList2dCanvas,
1433 switches::kEnableDistanceFieldText, 1433 switches::kEnableDistanceFieldText,
1434 switches::kEnableExperimentalCanvasFeatures, 1434 switches::kEnableExperimentalCanvasFeatures,
1435 switches::kEnableExperimentalWebPlatformFeatures, 1435 switches::kEnableExperimentalWebPlatformFeatures,
1436 switches::kEnableHeapProfiling, 1436 switches::kEnableHeapProfiling,
1437 switches::kEnableGPUClientLogging, 1437 switches::kEnableGPUClientLogging,
1438 switches::kEnableGpuClientTracing, 1438 switches::kEnableGpuClientTracing,
1439 switches::kEnableGpuMemoryBufferVideoFrames, 1439 switches::kEnableGpuMemoryBufferVideoFrames,
1440 switches::kEnableGPUServiceLogging, 1440 switches::kEnableGPUServiceLogging,
1441 switches::kEnableHiddenScrollbar,
1441 switches::kEnableIconNtp, 1442 switches::kEnableIconNtp,
1442 switches::kEnableLowResTiling, 1443 switches::kEnableLowResTiling,
1443 switches::kEnableMediaSuspend, 1444 switches::kEnableMediaSuspend,
1444 switches::kEnableInbandTextTracks, 1445 switches::kEnableInbandTextTracks,
1445 switches::kEnableLCDText, 1446 switches::kEnableLCDText,
1446 switches::kEnableLogging, 1447 switches::kEnableLogging,
1447 switches::kEnableMemoryBenchmarking, 1448 switches::kEnableMemoryBenchmarking,
1448 switches::kEnableNetworkInformation, 1449 switches::kEnableNetworkInformation,
1449 switches::kEnableOverlayScrollbar, 1450 switches::kEnableOverlayScrollbar,
1450 switches::kEnablePinch, 1451 switches::kEnablePinch,
(...skipping 1311 matching lines...) Expand 10 before | Expand all | Expand 10 after
2762 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2763 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2763 2764
2764 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2765 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2765 // enough information here so that we can determine what the bad message was. 2766 // enough information here so that we can determine what the bad message was.
2766 base::debug::Alias(&error); 2767 base::debug::Alias(&error);
2767 bad_message::ReceivedBadMessage(process.get(), 2768 bad_message::ReceivedBadMessage(process.get(),
2768 bad_message::RPH_MOJO_PROCESS_ERROR); 2769 bad_message::RPH_MOJO_PROCESS_ERROR);
2769 } 2770 }
2770 2771
2771 } // namespace content 2772 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698