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

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

Issue 1797363002: "Top Document Isolation" mode (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Suppress tests under --site-per-process Created 4 years, 8 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 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 1496 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 switches::kProfilerTiming, 1507 switches::kProfilerTiming,
1508 switches::kReducedReferrerGranularity, 1508 switches::kReducedReferrerGranularity,
1509 switches::kReduceSecurityForTesting, 1509 switches::kReduceSecurityForTesting,
1510 switches::kRegisterPepperPlugins, 1510 switches::kRegisterPepperPlugins,
1511 switches::kRendererStartupDialog, 1511 switches::kRendererStartupDialog,
1512 switches::kRootLayerScrolls, 1512 switches::kRootLayerScrolls,
1513 switches::kShowPaintRects, 1513 switches::kShowPaintRects,
1514 switches::kSitePerProcess, 1514 switches::kSitePerProcess,
1515 switches::kStatsCollectionController, 1515 switches::kStatsCollectionController,
1516 switches::kTestType, 1516 switches::kTestType,
1517 switches::kTopDocumentIsolation,
1517 switches::kTouchEvents, 1518 switches::kTouchEvents,
1518 switches::kTouchTextSelectionStrategy, 1519 switches::kTouchTextSelectionStrategy,
1519 switches::kTraceConfigFile, 1520 switches::kTraceConfigFile,
1520 switches::kTraceToConsole, 1521 switches::kTraceToConsole,
1521 switches::kUseCrossProcessFramesForGuests, 1522 switches::kUseCrossProcessFramesForGuests,
1522 switches::kUseFakeUIForMediaStream, 1523 switches::kUseFakeUIForMediaStream,
1523 // This flag needs to be propagated to the renderer process for 1524 // This flag needs to be propagated to the renderer process for
1524 // --in-process-webgl. 1525 // --in-process-webgl.
1525 switches::kUseGL, 1526 switches::kUseGL,
1526 switches::kUseMobileUserAgent, 1527 switches::kUseMobileUserAgent,
(...skipping 1276 matching lines...) Expand 10 before | Expand all | Expand 10 after
2803 2804
2804 // Skip widgets in other processes. 2805 // Skip widgets in other processes.
2805 if (rvh->GetProcess()->GetID() != GetID()) 2806 if (rvh->GetProcess()->GetID() != GetID())
2806 continue; 2807 continue;
2807 2808
2808 rvh->OnWebkitPreferencesChanged(); 2809 rvh->OnWebkitPreferencesChanged();
2809 } 2810 }
2810 } 2811 }
2811 2812
2812 } // namespace content 2813 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/frame_host/render_frame_host_manager.cc ('k') | content/browser/site_instance_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698