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

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

Issue 167673002: Remove --disable-fullscreen switch (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: merge tot Created 6 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 | Annotate | Revision Log
« 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 (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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 switches::kDisableCompositedScrollingForFrames, 972 switches::kDisableCompositedScrollingForFrames,
973 switches::kDisableCompositingForFixedPosition, 973 switches::kDisableCompositingForFixedPosition,
974 switches::kDisableCompositingForTransition, 974 switches::kDisableCompositingForTransition,
975 switches::kDisableDatabases, 975 switches::kDisableDatabases,
976 switches::kDisableDeadlineScheduling, 976 switches::kDisableDeadlineScheduling,
977 switches::kDisableDelegatedRenderer, 977 switches::kDisableDelegatedRenderer,
978 switches::kDisableDesktopNotifications, 978 switches::kDisableDesktopNotifications,
979 switches::kDisableDirectNPAPIRequests, 979 switches::kDisableDirectNPAPIRequests,
980 switches::kDisableFileSystem, 980 switches::kDisableFileSystem,
981 switches::kDisableFiltersOverIPC, 981 switches::kDisableFiltersOverIPC,
982 switches::kDisableFullScreen,
983 switches::kDisableGpu, 982 switches::kDisableGpu,
984 switches::kDisableGpuCompositing, 983 switches::kDisableGpuCompositing,
985 switches::kDisableGpuVsync, 984 switches::kDisableGpuVsync,
986 switches::kDisableHistogramCustomizer, 985 switches::kDisableHistogramCustomizer,
987 switches::kDisableLayerSquashing, 986 switches::kDisableLayerSquashing,
988 switches::kDisableLocalStorage, 987 switches::kDisableLocalStorage,
989 switches::kDisableLogging, 988 switches::kDisableLogging,
990 switches::kDisableOpusPlayback, 989 switches::kDisableOpusPlayback,
991 switches::kDisableOverlayScrollbar, 990 switches::kDisableOverlayScrollbar,
992 switches::kDisablePinch, 991 switches::kDisablePinch,
(...skipping 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after
2072 return; 2071 return;
2073 Send(new MediaStreamMsg_EnableAecDump(file_for_transit)); 2072 Send(new MediaStreamMsg_EnableAecDump(file_for_transit));
2074 } 2073 }
2075 2074
2076 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() { 2075 void RenderProcessHostImpl::SendDisableAecDumpToRenderer() {
2077 Send(new MediaStreamMsg_DisableAecDump()); 2076 Send(new MediaStreamMsg_DisableAecDump());
2078 } 2077 }
2079 #endif 2078 #endif
2080 2079
2081 } // namespace content 2080 } // 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