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

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

Issue 914373003: Exceptions for Web Notifications and the Push API by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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 1200 matching lines...) Expand 10 before | Expand all | Expand 10 after
1211 switches::kDisableFileSystem, 1211 switches::kDisableFileSystem,
1212 switches::kDisableGpuCompositing, 1212 switches::kDisableGpuCompositing,
1213 switches::kDisableGpuVsync, 1213 switches::kDisableGpuVsync,
1214 switches::kDisableLowResTiling, 1214 switches::kDisableLowResTiling,
1215 switches::kDisableHistogramCustomizer, 1215 switches::kDisableHistogramCustomizer,
1216 switches::kDisableLCDText, 1216 switches::kDisableLCDText,
1217 switches::kDisableLocalStorage, 1217 switches::kDisableLocalStorage,
1218 switches::kDisableLogging, 1218 switches::kDisableLogging,
1219 switches::kDisableMediaSource, 1219 switches::kDisableMediaSource,
1220 switches::kDisableMojoChannel, 1220 switches::kDisableMojoChannel,
1221 switches::kDisableNotifications,
1221 switches::kDisableOverlayScrollbar, 1222 switches::kDisableOverlayScrollbar,
1222 switches::kDisablePinch, 1223 switches::kDisablePinch,
1223 switches::kDisablePrefixedEncryptedMedia, 1224 switches::kDisablePrefixedEncryptedMedia,
1224 switches::kDisableSeccompFilterSandbox, 1225 switches::kDisableSeccompFilterSandbox,
1225 switches::kDisableSharedWorkers, 1226 switches::kDisableSharedWorkers,
1226 switches::kDisableSVG1DOM, 1227 switches::kDisableSVG1DOM,
1227 switches::kDisableThreadedCompositing, 1228 switches::kDisableThreadedCompositing,
1228 switches::kDisableThreadedScrolling, 1229 switches::kDisableThreadedScrolling,
1229 switches::kDisableTouchAdjustment, 1230 switches::kDisableTouchAdjustment,
1230 switches::kDisableTouchDragDrop, 1231 switches::kDisableTouchDragDrop,
(...skipping 1166 matching lines...) Expand 10 before | Expand all | Expand 10 after
2397 if (worker_ref_count_ == 0) 2398 if (worker_ref_count_ == 0)
2398 Cleanup(); 2399 Cleanup();
2399 } 2400 }
2400 2401
2401 void RenderProcessHostImpl::GetAudioOutputControllers( 2402 void RenderProcessHostImpl::GetAudioOutputControllers(
2402 const GetAudioOutputControllersCallback& callback) const { 2403 const GetAudioOutputControllersCallback& callback) const {
2403 audio_renderer_host()->GetOutputControllers(callback); 2404 audio_renderer_host()->GetOutputControllers(callback);
2404 } 2405 }
2405 2406
2406 } // namespace content 2407 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698