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

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

Issue 16830004: media: Remove VP9 flag, and enable VP9 support by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix nit in generated_resources.grd Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | media/base/media_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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
922 switches::kEnableCompositingForTransition, 922 switches::kEnableCompositingForTransition,
923 switches::kDisableCompositingForTransition, 923 switches::kDisableCompositingForTransition,
924 switches::kDisableThreadedCompositing, 924 switches::kDisableThreadedCompositing,
925 switches::kDisableTouchAdjustment, 925 switches::kDisableTouchAdjustment,
926 switches::kDefaultTileWidth, 926 switches::kDefaultTileWidth,
927 switches::kDefaultTileHeight, 927 switches::kDefaultTileHeight,
928 switches::kMaxUntiledLayerWidth, 928 switches::kMaxUntiledLayerWidth,
929 switches::kMaxUntiledLayerHeight, 929 switches::kMaxUntiledLayerHeight,
930 switches::kEnableViewport, 930 switches::kEnableViewport,
931 switches::kEnableOpusPlayback, 931 switches::kEnableOpusPlayback,
932 switches::kEnableVp9Playback,
933 switches::kEnableVp8AlphaPlayback, 932 switches::kEnableVp8AlphaPlayback,
934 switches::kEnableEac3Playback, 933 switches::kEnableEac3Playback,
935 switches::kForceDeviceScaleFactor, 934 switches::kForceDeviceScaleFactor,
936 switches::kFullMemoryCrashReport, 935 switches::kFullMemoryCrashReport,
937 #if !defined (GOOGLE_CHROME_BUILD) 936 #if !defined (GOOGLE_CHROME_BUILD)
938 // These are unsupported and not fully tested modes, so don't enable them 937 // These are unsupported and not fully tested modes, so don't enable them
939 // for official Google Chrome builds. 938 // for official Google Chrome builds.
940 switches::kInProcessPlugins, 939 switches::kInProcessPlugins,
941 #endif // GOOGLE_CHROME_BUILD 940 #endif // GOOGLE_CHROME_BUILD
942 switches::kJavaScriptFlags, 941 switches::kJavaScriptFlags,
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
1804 continue; 1803 continue;
1805 1804
1806 RenderViewHost* rvh = 1805 RenderViewHost* rvh =
1807 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget)); 1806 RenderViewHost::From(const_cast<RenderWidgetHost*>(widget));
1808 1807
1809 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1808 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1810 } 1809 }
1811 } 1810 }
1812 1811
1813 } // namespace content 1812 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | media/base/media_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698