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

Unified Diff: content/browser/renderer_host/image_transport_factory.cc

Issue 14146011: Renamed 'software_rendering' to 'swiftshader' to differentiate from (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/image_transport_factory.cc
diff --git a/content/browser/renderer_host/image_transport_factory.cc b/content/browser/renderer_host/image_transport_factory.cc
index b2f09b70e67e3e9e80affc0756625f4d2f8fe4f9..1e43694495ffc601a648d025747bf129d94ba649 100644
--- a/content/browser/renderer_host/image_transport_factory.cc
+++ b/content/browser/renderer_host/image_transport_factory.cc
@@ -746,7 +746,7 @@ void ImageTransportFactory::Initialize() {
}
if (ui::IsTestCompositorEnabled()) {
g_factory = new NoTransportFactory(new ui::TestContextFactory);
- } else if (command_line->HasSwitch(switches::kUIEnableSoftwareCompositing)) {
Ken Russell (switch to Gerrit) 2013/04/23 00:31:08 Is this command line argument going to be reused f
slavi 2013/04/23 00:38:49 Reverted the file. It's a leftover from the other
+ } else if (command_line->HasSwitch(switches::kDisableGpu)) {
g_factory = new NoTransportFactory(new SoftwareContextFactory);
} else {
g_factory = new GpuProcessTransportFactory;

Powered by Google App Engine
This is Rietveld 408576698