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

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

Issue 1739743003: Blink Compositor Animation: Erase old animation system. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Exclude histograms.xml Created 4 years, 9 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 | « components/test_runner/test_plugin.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 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 switches::kAudioBufferSize, 1388 switches::kAudioBufferSize,
1389 switches::kBlinkPlatformLogChannels, 1389 switches::kBlinkPlatformLogChannels,
1390 switches::kBlinkSettings, 1390 switches::kBlinkSettings,
1391 switches::kDefaultTileWidth, 1391 switches::kDefaultTileWidth,
1392 switches::kDefaultTileHeight, 1392 switches::kDefaultTileHeight,
1393 switches::kDisable3DAPIs, 1393 switches::kDisable3DAPIs,
1394 switches::kDisableAcceleratedJpegDecoding, 1394 switches::kDisableAcceleratedJpegDecoding,
1395 switches::kDisableAcceleratedVideoDecode, 1395 switches::kDisableAcceleratedVideoDecode,
1396 switches::kDisableBlinkFeatures, 1396 switches::kDisableBlinkFeatures,
1397 switches::kDisableBreakpad, 1397 switches::kDisableBreakpad,
1398 switches::kDisableCompositorAnimationTimelines,
1399 switches::kDisablePreferCompositingToLCDText, 1398 switches::kDisablePreferCompositingToLCDText,
1400 switches::kDisableDatabases, 1399 switches::kDisableDatabases,
1401 switches::kDisableDelayAgnosticAec, 1400 switches::kDisableDelayAgnosticAec,
1402 switches::kDisableDirectNPAPIRequests, 1401 switches::kDisableDirectNPAPIRequests,
1403 switches::kDisableDisplayList2dCanvas, 1402 switches::kDisableDisplayList2dCanvas,
1404 switches::kDisableDistanceFieldText, 1403 switches::kDisableDistanceFieldText,
1405 switches::kDisableEncryptedMedia, 1404 switches::kDisableEncryptedMedia,
1406 switches::kDisableFileSystem, 1405 switches::kDisableFileSystem,
1407 switches::kDisableGestureRequirementForMediaPlayback, 1406 switches::kDisableGestureRequirementForMediaPlayback,
1408 switches::kDisableGestureRequirementForPresentation, 1407 switches::kDisableGestureRequirementForPresentation,
(...skipping 1386 matching lines...) Expand 10 before | Expand all | Expand 10 after
2795 2794
2796 // Skip widgets in other processes. 2795 // Skip widgets in other processes.
2797 if (rvh->GetProcess()->GetID() != GetID()) 2796 if (rvh->GetProcess()->GetID() != GetID())
2798 continue; 2797 continue;
2799 2798
2800 rvh->OnWebkitPreferencesChanged(); 2799 rvh->OnWebkitPreferencesChanged();
2801 } 2800 }
2802 } 2801 }
2803 2802
2804 } // namespace content 2803 } // namespace content
OLDNEW
« no previous file with comments | « components/test_runner/test_plugin.cc ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698