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

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

Issue 1100763002: Inject CanAddURLToHistory into TopSitesImpl (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@prefs
Patch Set: Fix error introduced during rebase 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
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 1307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1318 switches::kReducedReferrerGranularity, 1318 switches::kReducedReferrerGranularity,
1319 switches::kReduceSecurityForTesting, 1319 switches::kReduceSecurityForTesting,
1320 switches::kRegisterPepperPlugins, 1320 switches::kRegisterPepperPlugins,
1321 switches::kRendererStartupDialog, 1321 switches::kRendererStartupDialog,
1322 switches::kRootLayerScrolls, 1322 switches::kRootLayerScrolls,
1323 switches::kShowPaintRects, 1323 switches::kShowPaintRects,
1324 switches::kSitePerProcess, 1324 switches::kSitePerProcess,
1325 switches::kStatsCollectionController, 1325 switches::kStatsCollectionController,
1326 switches::kTestType, 1326 switches::kTestType,
1327 switches::kTouchEvents, 1327 switches::kTouchEvents,
1328 switches::kTouchTextSelectionStrategy,
1328 switches::kTraceToConsole, 1329 switches::kTraceToConsole,
1329 // This flag needs to be propagated to the renderer process for 1330 // This flag needs to be propagated to the renderer process for
1330 // --in-process-webgl. 1331 // --in-process-webgl.
1331 switches::kUseGL, 1332 switches::kUseGL,
1332 switches::kUseMobileUserAgent, 1333 switches::kUseMobileUserAgent,
1333 switches::kUseNormalPriorityForTileTaskWorkerThreads, 1334 switches::kUseNormalPriorityForTileTaskWorkerThreads,
1334 switches::kV, 1335 switches::kV,
1335 switches::kVideoThreads, 1336 switches::kVideoThreads,
1336 switches::kVideoUnderflowThresholdMs, 1337 switches::kVideoUnderflowThresholdMs,
1337 switches::kVModule, 1338 switches::kVModule,
(...skipping 1145 matching lines...) Expand 10 before | Expand all | Expand 10 after
2483 if (worker_ref_count_ == 0) 2484 if (worker_ref_count_ == 0)
2484 Cleanup(); 2485 Cleanup();
2485 } 2486 }
2486 2487
2487 void RenderProcessHostImpl::GetAudioOutputControllers( 2488 void RenderProcessHostImpl::GetAudioOutputControllers(
2488 const GetAudioOutputControllersCallback& callback) const { 2489 const GetAudioOutputControllersCallback& callback) const {
2489 audio_renderer_host()->GetOutputControllers(callback); 2490 audio_renderer_host()->GetOutputControllers(callback);
2490 } 2491 }
2491 2492
2492 } // namespace content 2493 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698