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

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

Issue 2551293002: Add a new flag for slimming paint invalidation (Closed)
Patch Set: Update histograms.xml Created 4 years 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 1687 matching lines...) Expand 10 before | Expand all | Expand 10 after
1698 switches::kEnableMemoryBenchmarking, 1698 switches::kEnableMemoryBenchmarking,
1699 switches::kEnableNetworkInformation, 1699 switches::kEnableNetworkInformation,
1700 switches::kEnableOverlayScrollbar, 1700 switches::kEnableOverlayScrollbar,
1701 switches::kEnablePinch, 1701 switches::kEnablePinch,
1702 switches::kEnablePluginPlaceholderTesting, 1702 switches::kEnablePluginPlaceholderTesting,
1703 switches::kEnablePreciseMemoryInfo, 1703 switches::kEnablePreciseMemoryInfo,
1704 switches::kEnablePreferCompositingToLCDText, 1704 switches::kEnablePreferCompositingToLCDText,
1705 switches::kEnableRGBA4444Textures, 1705 switches::kEnableRGBA4444Textures,
1706 switches::kEnableSkiaBenchmarking, 1706 switches::kEnableSkiaBenchmarking,
1707 switches::kEnableSlimmingPaintV2, 1707 switches::kEnableSlimmingPaintV2,
1708 switches::kEnableSlimmingPaintInvalidation,
1708 switches::kEnableSmoothScrolling, 1709 switches::kEnableSmoothScrolling,
1709 switches::kEnableStatsTable, 1710 switches::kEnableStatsTable,
1710 switches::kEnableThreadedCompositing, 1711 switches::kEnableThreadedCompositing,
1711 switches::kEnableTouchDragDrop, 1712 switches::kEnableTouchDragDrop,
1712 switches::kEnableUseZoomForDSF, 1713 switches::kEnableUseZoomForDSF,
1713 switches::kEnableViewport, 1714 switches::kEnableViewport,
1714 switches::kEnableVp9InMp4, 1715 switches::kEnableVp9InMp4,
1715 switches::kEnableVtune, 1716 switches::kEnableVtune,
1716 switches::kEnableWebFontsInterventionTrigger, 1717 switches::kEnableWebFontsInterventionTrigger,
1717 switches::kEnableWebFontsInterventionV2, 1718 switches::kEnableWebFontsInterventionV2,
(...skipping 1283 matching lines...) Expand 10 before | Expand all | Expand 10 after
3001 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 3002 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
3002 3003
3003 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. 3004 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing.
3004 // Capture the error message in a crash key value. 3005 // Capture the error message in a crash key value.
3005 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error); 3006 base::debug::ScopedCrashKey error_key_value("mojo-message-error", error);
3006 bad_message::ReceivedBadMessage(render_process_id, 3007 bad_message::ReceivedBadMessage(render_process_id,
3007 bad_message::RPH_MOJO_PROCESS_ERROR); 3008 bad_message::RPH_MOJO_PROCESS_ERROR);
3008 } 3009 }
3009 3010
3010 } // namespace content 3011 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698