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

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

Issue 1117953005: Remove FileSystem runtime flag for chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove all kDisableFileSystem Created 5 years, 7 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 | « android_webview/lib/main/aw_main_delegate.cc ('k') | content/child/runtime_features.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 1209 matching lines...) Expand 10 before | Expand all | Expand 10 after
1220 switches::kDisableAcceleratedJpegDecoding, 1220 switches::kDisableAcceleratedJpegDecoding,
1221 switches::kDisableAcceleratedVideoDecode, 1221 switches::kDisableAcceleratedVideoDecode,
1222 switches::kDisableBlinkFeatures, 1222 switches::kDisableBlinkFeatures,
1223 switches::kDisableBreakpad, 1223 switches::kDisableBreakpad,
1224 switches::kDisablePreferCompositingToLCDText, 1224 switches::kDisablePreferCompositingToLCDText,
1225 switches::kDisableDatabases, 1225 switches::kDisableDatabases,
1226 switches::kDisableDirectNPAPIRequests, 1226 switches::kDisableDirectNPAPIRequests,
1227 switches::kDisableDisplayList2dCanvas, 1227 switches::kDisableDisplayList2dCanvas,
1228 switches::kDisableDistanceFieldText, 1228 switches::kDisableDistanceFieldText,
1229 switches::kDisableEncryptedMedia, 1229 switches::kDisableEncryptedMedia,
1230 switches::kDisableFileSystem,
1231 switches::kDisableGpuCompositing, 1230 switches::kDisableGpuCompositing,
1232 switches::kDisableGpuVsync, 1231 switches::kDisableGpuVsync,
1233 switches::kDisableLowResTiling, 1232 switches::kDisableLowResTiling,
1234 switches::kDisableHistogramCustomizer, 1233 switches::kDisableHistogramCustomizer,
1235 switches::kDisableIconNtp, 1234 switches::kDisableIconNtp,
1236 switches::kDisableLCDText, 1235 switches::kDisableLCDText,
1237 switches::kDisableLocalStorage, 1236 switches::kDisableLocalStorage,
1238 switches::kDisableLogging, 1237 switches::kDisableLogging,
1239 switches::kDisableMediaSource, 1238 switches::kDisableMediaSource,
1240 switches::kDisableMojoChannel, 1239 switches::kDisableMojoChannel,
(...skipping 1243 matching lines...) Expand 10 before | Expand all | Expand 10 after
2484 if (worker_ref_count_ == 0) 2483 if (worker_ref_count_ == 0)
2485 Cleanup(); 2484 Cleanup();
2486 } 2485 }
2487 2486
2488 void RenderProcessHostImpl::GetAudioOutputControllers( 2487 void RenderProcessHostImpl::GetAudioOutputControllers(
2489 const GetAudioOutputControllersCallback& callback) const { 2488 const GetAudioOutputControllersCallback& callback) const {
2490 audio_renderer_host()->GetOutputControllers(callback); 2489 audio_renderer_host()->GetOutputControllers(callback);
2491 } 2490 }
2492 2491
2493 } // namespace content 2492 } // namespace content
OLDNEW
« no previous file with comments | « android_webview/lib/main/aw_main_delegate.cc ('k') | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698