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

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

Issue 1011833002: Web MIDI: make Chrome a music platform (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 1271 matching lines...) Expand 10 before | Expand all | Expand 10 after
1282 switches::kEnableStrictSiteIsolation, 1282 switches::kEnableStrictSiteIsolation,
1283 switches::kEnableThreadedCompositing, 1283 switches::kEnableThreadedCompositing,
1284 switches::kEnableTouchDragDrop, 1284 switches::kEnableTouchDragDrop,
1285 switches::kEnableTouchEditing, 1285 switches::kEnableTouchEditing,
1286 switches::kEnableUnsafeES3APIs, 1286 switches::kEnableUnsafeES3APIs,
1287 switches::kEnableViewport, 1287 switches::kEnableViewport,
1288 switches::kEnableViewportMeta, 1288 switches::kEnableViewportMeta,
1289 switches::kEnableVtune, 1289 switches::kEnableVtune,
1290 switches::kEnableWebGLDraftExtensions, 1290 switches::kEnableWebGLDraftExtensions,
1291 switches::kEnableWebGLImageChromium, 1291 switches::kEnableWebGLImageChromium,
1292 switches::kEnableWebMIDI,
1293 switches::kForceDeviceScaleFactor, 1292 switches::kForceDeviceScaleFactor,
1294 switches::kForceDisplayList2dCanvas, 1293 switches::kForceDisplayList2dCanvas,
1295 switches::kFullMemoryCrashReport, 1294 switches::kFullMemoryCrashReport,
1296 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode, 1295 switches::kIgnoreResolutionLimitsForAcceleratedVideoDecode,
1297 switches::kIPCConnectionTimeout, 1296 switches::kIPCConnectionTimeout,
1298 switches::kJavaScriptFlags, 1297 switches::kJavaScriptFlags,
1299 switches::kLoggingLevel, 1298 switches::kLoggingLevel,
1300 switches::kMainFrameResizesAreOrientationChanges, 1299 switches::kMainFrameResizesAreOrientationChanges,
1301 switches::kMaxUntiledLayerWidth, 1300 switches::kMaxUntiledLayerWidth,
1302 switches::kMaxUntiledLayerHeight, 1301 switches::kMaxUntiledLayerHeight,
(...skipping 1151 matching lines...) Expand 10 before | Expand all | Expand 10 after
2454 if (worker_ref_count_ == 0) 2453 if (worker_ref_count_ == 0)
2455 Cleanup(); 2454 Cleanup();
2456 } 2455 }
2457 2456
2458 void RenderProcessHostImpl::GetAudioOutputControllers( 2457 void RenderProcessHostImpl::GetAudioOutputControllers(
2459 const GetAudioOutputControllersCallback& callback) const { 2458 const GetAudioOutputControllersCallback& callback) const {
2460 audio_renderer_host()->GetOutputControllers(callback); 2459 audio_renderer_host()->GetOutputControllers(callback);
2461 } 2460 }
2462 2461
2463 } // namespace content 2462 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/ui/webui/options/content_settings_handler.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698