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

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

Issue 1660193007: [Presentation API] Adding a flag to disable gesture check for starting presentations (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed philipj@'s comment Created 4 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
« no previous file with comments | « no previous file | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1375 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 switches::kDisableCompositorAnimationTimelines, 1386 switches::kDisableCompositorAnimationTimelines,
1387 switches::kDisablePreferCompositingToLCDText, 1387 switches::kDisablePreferCompositingToLCDText,
1388 switches::kDisableDatabases, 1388 switches::kDisableDatabases,
1389 switches::kDisableDelayAgnosticAec, 1389 switches::kDisableDelayAgnosticAec,
1390 switches::kDisableDirectNPAPIRequests, 1390 switches::kDisableDirectNPAPIRequests,
1391 switches::kDisableDisplayList2dCanvas, 1391 switches::kDisableDisplayList2dCanvas,
1392 switches::kDisableDistanceFieldText, 1392 switches::kDisableDistanceFieldText,
1393 switches::kDisableEncryptedMedia, 1393 switches::kDisableEncryptedMedia,
1394 switches::kDisableFileSystem, 1394 switches::kDisableFileSystem,
1395 switches::kDisableGestureRequirementForMediaPlayback, 1395 switches::kDisableGestureRequirementForMediaPlayback,
1396 switches::kDisableGestureRequirementForPresentation,
1396 switches::kDisableGpuCompositing, 1397 switches::kDisableGpuCompositing,
1397 switches::kDisableGpuMemoryBufferVideoFrames, 1398 switches::kDisableGpuMemoryBufferVideoFrames,
1398 switches::kDisableGpuVsync, 1399 switches::kDisableGpuVsync,
1399 switches::kDisableLowResTiling, 1400 switches::kDisableLowResTiling,
1400 switches::kDisableHistogramCustomizer, 1401 switches::kDisableHistogramCustomizer,
1401 switches::kDisableIconNtp, 1402 switches::kDisableIconNtp,
1402 switches::kDisableLCDText, 1403 switches::kDisableLCDText,
1403 switches::kDisableLocalStorage, 1404 switches::kDisableLocalStorage,
1404 switches::kDisableLogging, 1405 switches::kDisableLogging,
1405 switches::kDisableMediaSource, 1406 switches::kDisableMediaSource,
(...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2792 void RenderProcessHostImpl::GetAudioOutputControllers( 2793 void RenderProcessHostImpl::GetAudioOutputControllers(
2793 const GetAudioOutputControllersCallback& callback) const { 2794 const GetAudioOutputControllersCallback& callback) const {
2794 audio_renderer_host()->GetOutputControllers(callback); 2795 audio_renderer_host()->GetOutputControllers(callback);
2795 } 2796 }
2796 2797
2797 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() { 2798 BluetoothDispatcherHost* RenderProcessHostImpl::GetBluetoothDispatcherHost() {
2798 return bluetooth_dispatcher_host_.get(); 2799 return bluetooth_dispatcher_host_.get();
2799 } 2800 }
2800 2801
2801 } // namespace content 2802 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698