| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |