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

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

Issue 1969673002: Disable HW H264 decoder for Win7 & add enable flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rename. Created 4 years, 7 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 | « no previous file | content/public/common/content_switches.h » ('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 1480 matching lines...) Expand 10 before | Expand all | Expand 10 after
1491 #if defined(OS_ANDROID) 1491 #if defined(OS_ANDROID)
1492 switches::kDisableUnifiedMediaPipeline, 1492 switches::kDisableUnifiedMediaPipeline,
1493 switches::kRendererWaitForJavaDebugger, 1493 switches::kRendererWaitForJavaDebugger,
1494 #endif 1494 #endif
1495 #if defined(OS_MACOSX) 1495 #if defined(OS_MACOSX)
1496 // Allow this to be set when invoking the browser and relayed along. 1496 // Allow this to be set when invoking the browser and relayed along.
1497 switches::kEnableSandboxLogging, 1497 switches::kEnableSandboxLogging,
1498 #endif 1498 #endif
1499 #if defined(OS_WIN) 1499 #if defined(OS_WIN)
1500 switches::kDisableWin32kRendererLockDown, 1500 switches::kDisableWin32kRendererLockDown,
1501 switches::kEnableWin7WebRtcHWH264Decoding,
1501 switches::kTrySupportedChannelLayouts, 1502 switches::kTrySupportedChannelLayouts,
1502 switches::kTraceExportEventsToETW, 1503 switches::kTraceExportEventsToETW,
1503 #endif 1504 #endif
1504 #if defined(USE_OZONE) 1505 #if defined(USE_OZONE)
1505 switches::kOzonePlatform, 1506 switches::kOzonePlatform,
1506 #endif 1507 #endif
1507 #if defined(OS_CHROMEOS) 1508 #if defined(OS_CHROMEOS)
1508 switches::kDisableVaapiAcceleratedVideoEncode, 1509 switches::kDisableVaapiAcceleratedVideoEncode,
1509 #endif 1510 #endif
1510 }; 1511 };
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
2752 2753
2753 // Skip widgets in other processes. 2754 // Skip widgets in other processes.
2754 if (rvh->GetProcess()->GetID() != GetID()) 2755 if (rvh->GetProcess()->GetID() != GetID())
2755 continue; 2756 continue;
2756 2757
2757 rvh->OnWebkitPreferencesChanged(); 2758 rvh->OnWebkitPreferencesChanged();
2758 } 2759 }
2759 } 2760 }
2760 2761
2761 } // namespace content 2762 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698