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

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

Issue 2141793002: Improving canvas 2D performance by switching graphics rendering pipeline. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 1451 matching lines...) Expand 10 before | Expand all | Expand 10 after
1462 switches::kEnableVtune, 1462 switches::kEnableVtune,
1463 switches::kEnableWebBluetooth, 1463 switches::kEnableWebBluetooth,
1464 switches::kEnableWebFontsInterventionTrigger, 1464 switches::kEnableWebFontsInterventionTrigger,
1465 switches::kEnableWebFontsInterventionV2, 1465 switches::kEnableWebFontsInterventionV2,
1466 switches::kEnableWebGLDraftExtensions, 1466 switches::kEnableWebGLDraftExtensions,
1467 switches::kEnableWebGLImageChromium, 1467 switches::kEnableWebGLImageChromium,
1468 switches::kEnableWebVR, 1468 switches::kEnableWebVR,
1469 switches::kExplicitlyAllowedPorts, 1469 switches::kExplicitlyAllowedPorts,
1470 switches::kForceDeviceScaleFactor, 1470 switches::kForceDeviceScaleFactor,
1471 switches::kForceDisplayList2dCanvas, 1471 switches::kForceDisplayList2dCanvas,
1472 switches::kEnableCanvas2dDynamicPipelineMode,
1472 switches::kForceOverlayFullscreenVideo, 1473 switches::kForceOverlayFullscreenVideo,
1473 switches::kFullMemoryCrashReport, 1474 switches::kFullMemoryCrashReport,
1474 switches::kInertVisualViewport, 1475 switches::kInertVisualViewport,
1475 switches::kIPCConnectionTimeout, 1476 switches::kIPCConnectionTimeout,
1476 switches::kIsRunningInMash, 1477 switches::kIsRunningInMash,
1477 switches::kJavaScriptFlags, 1478 switches::kJavaScriptFlags,
1478 switches::kLoggingLevel, 1479 switches::kLoggingLevel,
1479 switches::kMainFrameResizesAreOrientationChanges, 1480 switches::kMainFrameResizesAreOrientationChanges,
1480 switches::kMaxUntiledLayerWidth, 1481 switches::kMaxUntiledLayerWidth,
1481 switches::kMaxUntiledLayerHeight, 1482 switches::kMaxUntiledLayerHeight,
(...skipping 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after
2760 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error; 2761 LOG(ERROR) << "Terminating render process for bad Mojo message: " << error;
2761 2762
2762 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias 2763 // The ReceivedBadMessage call below will trigger a DumpWithoutCrashing. Alias
2763 // enough information here so that we can determine what the bad message was. 2764 // enough information here so that we can determine what the bad message was.
2764 base::debug::Alias(&error); 2765 base::debug::Alias(&error);
2765 bad_message::ReceivedBadMessage(process.get(), 2766 bad_message::ReceivedBadMessage(process.get(),
2766 bad_message::RPH_MOJO_PROCESS_ERROR); 2767 bad_message::RPH_MOJO_PROCESS_ERROR);
2767 } 2768 }
2768 2769
2769 } // namespace content 2770 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698