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

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

Issue 1141793002: Reland: Fix WebViewPlugin::scheduleAnimation crash (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix style nit 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 | « chrome/browser/prerender/prerender_browsertest.cc ('k') | content/content_tests.gypi » ('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 1277 matching lines...) Expand 10 before | Expand all | Expand 10 after
1288 switches::kFullMemoryCrashReport, 1288 switches::kFullMemoryCrashReport,
1289 switches::kIPCConnectionTimeout, 1289 switches::kIPCConnectionTimeout,
1290 switches::kJavaScriptFlags, 1290 switches::kJavaScriptFlags,
1291 switches::kLoggingLevel, 1291 switches::kLoggingLevel,
1292 switches::kMainFrameResizesAreOrientationChanges, 1292 switches::kMainFrameResizesAreOrientationChanges,
1293 switches::kMaxUntiledLayerWidth, 1293 switches::kMaxUntiledLayerWidth,
1294 switches::kMaxUntiledLayerHeight, 1294 switches::kMaxUntiledLayerHeight,
1295 switches::kMemoryMetrics, 1295 switches::kMemoryMetrics,
1296 switches::kNoReferrers, 1296 switches::kNoReferrers,
1297 switches::kNoSandbox, 1297 switches::kNoSandbox,
1298 switches::kOverridePluginPowerSaverForTesting,
1298 switches::kPpapiInProcess, 1299 switches::kPpapiInProcess,
1299 switches::kProfilerTiming, 1300 switches::kProfilerTiming,
1300 switches::kReducedReferrerGranularity, 1301 switches::kReducedReferrerGranularity,
1301 switches::kReduceSecurityForTesting, 1302 switches::kReduceSecurityForTesting,
1302 switches::kRegisterPepperPlugins, 1303 switches::kRegisterPepperPlugins,
1303 switches::kRendererStartupDialog, 1304 switches::kRendererStartupDialog,
1304 switches::kRootLayerScrolls, 1305 switches::kRootLayerScrolls,
1305 switches::kShowPaintRects, 1306 switches::kShowPaintRects,
1306 switches::kSitePerProcess, 1307 switches::kSitePerProcess,
1307 switches::kStatsCollectionController, 1308 switches::kStatsCollectionController,
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after
2453 if (worker_ref_count_ == 0) 2454 if (worker_ref_count_ == 0)
2454 Cleanup(); 2455 Cleanup();
2455 } 2456 }
2456 2457
2457 void RenderProcessHostImpl::GetAudioOutputControllers( 2458 void RenderProcessHostImpl::GetAudioOutputControllers(
2458 const GetAudioOutputControllersCallback& callback) const { 2459 const GetAudioOutputControllersCallback& callback) const {
2459 audio_renderer_host()->GetOutputControllers(callback); 2460 audio_renderer_host()->GetOutputControllers(callback);
2460 } 2461 }
2461 2462
2462 } // namespace content 2463 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/prerender/prerender_browsertest.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698