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

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

Issue 1248253003: Add better support for RGBA_4444 textures. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and forward flags Created 5 years, 4 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
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 1245 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 switches::kDisableLogging, 1256 switches::kDisableLogging,
1257 switches::kDisableMediaSource, 1257 switches::kDisableMediaSource,
1258 switches::kDisableMojoChannel, 1258 switches::kDisableMojoChannel,
1259 switches::kDisableNewVideoRenderer, 1259 switches::kDisableNewVideoRenderer,
1260 switches::kDisableNotifications, 1260 switches::kDisableNotifications,
1261 switches::kDisableOverlayScrollbar, 1261 switches::kDisableOverlayScrollbar,
1262 switches::kDisablePermissionsAPI, 1262 switches::kDisablePermissionsAPI,
1263 switches::kDisablePresentationAPI, 1263 switches::kDisablePresentationAPI,
1264 switches::kDisablePinch, 1264 switches::kDisablePinch,
1265 switches::kDisablePrefixedEncryptedMedia, 1265 switches::kDisablePrefixedEncryptedMedia,
1266 switches::kDisableRGBA4444Textures,
1266 switches::kDisableSeccompFilterSandbox, 1267 switches::kDisableSeccompFilterSandbox,
1267 switches::kDisableSharedWorkers, 1268 switches::kDisableSharedWorkers,
1268 switches::kDisableSlimmingPaint, 1269 switches::kDisableSlimmingPaint,
1269 switches::kDisableSpeechAPI, 1270 switches::kDisableSpeechAPI,
1270 switches::kDisableSVG1DOM, 1271 switches::kDisableSVG1DOM,
1271 switches::kDisableThreadedCompositing, 1272 switches::kDisableThreadedCompositing,
1272 switches::kDisableThreadedScrolling, 1273 switches::kDisableThreadedScrolling,
1273 switches::kDisableTouchAdjustment, 1274 switches::kDisableTouchAdjustment,
1274 switches::kDisableTouchDragDrop, 1275 switches::kDisableTouchDragDrop,
1275 switches::kDisableTouchEditing, 1276 switches::kDisableTouchEditing,
(...skipping 20 matching lines...) Expand all
1296 switches::kEnableLogging, 1297 switches::kEnableLogging,
1297 switches::kEnableMemoryBenchmarking, 1298 switches::kEnableMemoryBenchmarking,
1298 switches::kEnableNetworkInformation, 1299 switches::kEnableNetworkInformation,
1299 switches::kEnableOverlayFullscreenVideo, 1300 switches::kEnableOverlayFullscreenVideo,
1300 switches::kEnableOverlayScrollbar, 1301 switches::kEnableOverlayScrollbar,
1301 switches::kEnablePinch, 1302 switches::kEnablePinch,
1302 switches::kEnablePluginPlaceholderTesting, 1303 switches::kEnablePluginPlaceholderTesting,
1303 switches::kEnablePreciseMemoryInfo, 1304 switches::kEnablePreciseMemoryInfo,
1304 switches::kEnablePreferCompositingToLCDText, 1305 switches::kEnablePreferCompositingToLCDText,
1305 switches::kEnablePushMessagePayload, 1306 switches::kEnablePushMessagePayload,
1307 switches::kEnableRGBA4444Textures,
1306 switches::kEnableRendererMojoChannel, 1308 switches::kEnableRendererMojoChannel,
1307 switches::kEnableRTCSmoothnessAlgorithm, 1309 switches::kEnableRTCSmoothnessAlgorithm,
1308 switches::kEnableSeccompFilterSandbox, 1310 switches::kEnableSeccompFilterSandbox,
1309 switches::kEnableSkiaBenchmarking, 1311 switches::kEnableSkiaBenchmarking,
1310 switches::kEnableSlimmingPaint, 1312 switches::kEnableSlimmingPaint,
1311 switches::kEnableSlimmingPaintV2, 1313 switches::kEnableSlimmingPaintV2,
1312 switches::kEnableSmoothScrolling, 1314 switches::kEnableSmoothScrolling,
1313 switches::kEnableStaleWhileRevalidate, 1315 switches::kEnableStaleWhileRevalidate,
1314 switches::kEnableStatsTable, 1316 switches::kEnableStatsTable,
1315 switches::kEnableThreadedCompositing, 1317 switches::kEnableThreadedCompositing,
(...skipping 1215 matching lines...) Expand 10 before | Expand all | Expand 10 after
2531 void RenderProcessHostImpl::GetAudioOutputControllers( 2533 void RenderProcessHostImpl::GetAudioOutputControllers(
2532 const GetAudioOutputControllersCallback& callback) const { 2534 const GetAudioOutputControllersCallback& callback) const {
2533 audio_renderer_host()->GetOutputControllers(callback); 2535 audio_renderer_host()->GetOutputControllers(callback);
2534 } 2536 }
2535 2537
2536 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2538 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2537 return bluetooth_dispatcher_host_.get(); 2539 return bluetooth_dispatcher_host_.get();
2538 } 2540 }
2539 2541
2540 } // namespace content 2542 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/login/chrome_restart_request.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698