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

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

Issue 74563002: AndroidVideoEncodeAccelerator is born! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: kbr comments. Created 7 years 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
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 949 matching lines...) Expand 10 before | Expand all | Expand 10 after
960 switches::kDisableThreadedCompositing, 960 switches::kDisableThreadedCompositing,
961 switches::kDisableTouchAdjustment, 961 switches::kDisableTouchAdjustment,
962 switches::kDisableTouchDragDrop, 962 switches::kDisableTouchDragDrop,
963 switches::kDisableTouchEditing, 963 switches::kDisableTouchEditing,
964 switches::kDisableUniversalAcceleratedOverflowScroll, 964 switches::kDisableUniversalAcceleratedOverflowScroll,
965 switches::kDisableUnprefixedMediaSource, 965 switches::kDisableUnprefixedMediaSource,
966 switches::kDisableVp8AlphaPlayback, 966 switches::kDisableVp8AlphaPlayback,
967 switches::kDisableWebAnimationsCSS, 967 switches::kDisableWebAnimationsCSS,
968 switches::kDisableWebAudio, 968 switches::kDisableWebAudio,
969 switches::kDisableWebKitMediaSource, 969 switches::kDisableWebKitMediaSource,
970 switches::kDisableWebRtcHWEncoding,
970 switches::kDomAutomationController, 971 switches::kDomAutomationController,
971 switches::kEnableAcceleratedFixedRootBackground, 972 switches::kEnableAcceleratedFixedRootBackground,
972 switches::kEnableAcceleratedOverflowScroll, 973 switches::kEnableAcceleratedOverflowScroll,
973 switches::kEnableAcceleratedScrollableFrames, 974 switches::kEnableAcceleratedScrollableFrames,
974 switches::kEnableAccessibilityLogging, 975 switches::kEnableAccessibilityLogging,
975 switches::kEnableBeginFrameScheduling, 976 switches::kEnableBeginFrameScheduling,
976 switches::kEnableBrowserPluginForAllViewTypes, 977 switches::kEnableBrowserPluginForAllViewTypes,
977 switches::kEnableCompositedScrollingForFrames, 978 switches::kEnableCompositedScrollingForFrames,
978 switches::kEnableCompositingForFixedPosition, 979 switches::kEnableCompositingForFixedPosition,
979 switches::kEnableCompositingForTransition, 980 switches::kEnableCompositingForTransition,
(...skipping 911 matching lines...) Expand 10 before | Expand all | Expand 10 after
1891 // Skip widgets in other processes. 1892 // Skip widgets in other processes.
1892 if (widget->GetProcess()->GetID() != GetID()) 1893 if (widget->GetProcess()->GetID() != GetID())
1893 continue; 1894 continue;
1894 1895
1895 RenderViewHost* rvh = RenderViewHost::From(widget); 1896 RenderViewHost* rvh = RenderViewHost::From(widget);
1896 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1897 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1897 } 1898 }
1898 } 1899 }
1899 1900
1900 } // namespace content 1901 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698