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

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

Issue 1914963002: Introduce v8-cache-strategies-for-cache-storage setting flags. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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/about_flags.cc ('k') | content/public/common/content_switches.h » ('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 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 1428 matching lines...) Expand 10 before | Expand all | Expand 10 after
1439 switches::kTraceConfigFile, 1439 switches::kTraceConfigFile,
1440 switches::kTraceToConsole, 1440 switches::kTraceToConsole,
1441 switches::kUseCrossProcessFramesForGuests, 1441 switches::kUseCrossProcessFramesForGuests,
1442 switches::kUseFakeUIForMediaStream, 1442 switches::kUseFakeUIForMediaStream,
1443 // This flag needs to be propagated to the renderer process for 1443 // This flag needs to be propagated to the renderer process for
1444 // --in-process-webgl. 1444 // --in-process-webgl.
1445 switches::kUseGL, 1445 switches::kUseGL,
1446 switches::kUseMobileUserAgent, 1446 switches::kUseMobileUserAgent,
1447 switches::kUseRemoteCompositing, 1447 switches::kUseRemoteCompositing,
1448 switches::kV, 1448 switches::kV,
1449 switches::kV8CacheStrategiesForCacheStorage,
1449 switches::kVideoThreads, 1450 switches::kVideoThreads,
1450 switches::kVideoUnderflowThresholdMs, 1451 switches::kVideoUnderflowThresholdMs,
1451 switches::kVModule, 1452 switches::kVModule,
1452 // Please keep these in alphabetical order. Compositor switches here should 1453 // Please keep these in alphabetical order. Compositor switches here should
1453 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc. 1454 // also be added to chrome/browser/chromeos/login/chrome_restart_request.cc.
1454 cc::switches::kDisableCachedPictureRaster, 1455 cc::switches::kDisableCachedPictureRaster,
1455 cc::switches::kDisableCompositedAntialiasing, 1456 cc::switches::kDisableCompositedAntialiasing,
1456 cc::switches::kDisableMainFrameBeforeActivation, 1457 cc::switches::kDisableMainFrameBeforeActivation,
1457 cc::switches::kDisableThreadedAnimation, 1458 cc::switches::kDisableThreadedAnimation,
1458 cc::switches::kEnableBeginFrameScheduling, 1459 cc::switches::kEnableBeginFrameScheduling,
(...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after
2752 2753
2753 // Skip widgets in other processes. 2754 // Skip widgets in other processes.
2754 if (rvh->GetProcess()->GetID() != GetID()) 2755 if (rvh->GetProcess()->GetID() != GetID())
2755 continue; 2756 continue;
2756 2757
2757 rvh->OnWebkitPreferencesChanged(); 2758 rvh->OnWebkitPreferencesChanged();
2758 } 2759 }
2759 } 2760 }
2760 2761
2761 } // namespace content 2762 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698