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

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

Issue 1805013003: Enable implicit signalling for HE AAC v1 & v2 in ADTS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Typo Created 4 years, 9 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 | media/base/audio_buffer.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 1564 matching lines...) Expand 10 before | Expand all | Expand 10 after
1575 switches::kIPCSyncCompositing, 1575 switches::kIPCSyncCompositing,
1576 switches::kRendererWaitForJavaDebugger, 1576 switches::kRendererWaitForJavaDebugger,
1577 #endif 1577 #endif
1578 #if defined(OS_MACOSX) 1578 #if defined(OS_MACOSX)
1579 // Allow this to be set when invoking the browser and relayed along. 1579 // Allow this to be set when invoking the browser and relayed along.
1580 switches::kEnableSandboxLogging, 1580 switches::kEnableSandboxLogging,
1581 #endif 1581 #endif
1582 #if defined(OS_WIN) 1582 #if defined(OS_WIN)
1583 switches::kDisableDirectWrite, 1583 switches::kDisableDirectWrite,
1584 switches::kDisableWin32kRendererLockDown, 1584 switches::kDisableWin32kRendererLockDown,
1585 switches::kTrySupportedChannelLayouts,
1585 switches::kTraceExportEventsToETW, 1586 switches::kTraceExportEventsToETW,
1586 #endif 1587 #endif
1587 #if defined(USE_OZONE) 1588 #if defined(USE_OZONE)
1588 switches::kOzonePlatform, 1589 switches::kOzonePlatform,
1589 #endif 1590 #endif
1590 #if defined(OS_CHROMEOS) 1591 #if defined(OS_CHROMEOS)
1591 switches::kDisableVaapiAcceleratedVideoEncode, 1592 switches::kDisableVaapiAcceleratedVideoEncode,
1592 #endif 1593 #endif
1593 }; 1594 };
1594 renderer_cmd->CopySwitchesFrom(browser_cmd, kSwitchNames, 1595 renderer_cmd->CopySwitchesFrom(browser_cmd, kSwitchNames,
(...skipping 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after
2810 2811
2811 // Skip widgets in other processes. 2812 // Skip widgets in other processes.
2812 if (rvh->GetProcess()->GetID() != GetID()) 2813 if (rvh->GetProcess()->GetID() != GetID())
2813 continue; 2814 continue;
2814 2815
2815 rvh->OnWebkitPreferencesChanged(); 2816 rvh->OnWebkitPreferencesChanged();
2816 } 2817 }
2817 } 2818 }
2818 2819
2819 } // namespace content 2820 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | media/base/audio_buffer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698