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

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

Issue 1752083003: mac: Use IOSurfaces in Canvas2DLayerBridge. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@temp36_canvas2d_refactor
Patch Set: Rebase. Group macros. 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
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 1378 matching lines...) Expand 10 before | Expand all | Expand 10 after
1389 // with any associated values) if present in the browser command line. 1389 // with any associated values) if present in the browser command line.
1390 static const char* const kSwitchNames[] = { 1390 static const char* const kSwitchNames[] = {
1391 switches::kAgcStartupMinVolume, 1391 switches::kAgcStartupMinVolume,
1392 switches::kAllowLoopbackInPeerConnection, 1392 switches::kAllowLoopbackInPeerConnection,
1393 switches::kAndroidFontsPath, 1393 switches::kAndroidFontsPath,
1394 switches::kAudioBufferSize, 1394 switches::kAudioBufferSize,
1395 switches::kBlinkPlatformLogChannels, 1395 switches::kBlinkPlatformLogChannels,
1396 switches::kBlinkSettings, 1396 switches::kBlinkSettings,
1397 switches::kDefaultTileWidth, 1397 switches::kDefaultTileWidth,
1398 switches::kDefaultTileHeight, 1398 switches::kDefaultTileHeight,
1399 switches::kDisable2dCanvasImageChromium,
1399 switches::kDisable3DAPIs, 1400 switches::kDisable3DAPIs,
1400 switches::kDisableAcceleratedJpegDecoding, 1401 switches::kDisableAcceleratedJpegDecoding,
1401 switches::kDisableAcceleratedVideoDecode, 1402 switches::kDisableAcceleratedVideoDecode,
1402 switches::kDisableBlinkFeatures, 1403 switches::kDisableBlinkFeatures,
1403 switches::kDisableBreakpad, 1404 switches::kDisableBreakpad,
1404 switches::kDisablePreferCompositingToLCDText, 1405 switches::kDisablePreferCompositingToLCDText,
1405 switches::kDisableDatabases, 1406 switches::kDisableDatabases,
1406 switches::kDisableDelayAgnosticAec, 1407 switches::kDisableDelayAgnosticAec,
1407 switches::kDisableDirectNPAPIRequests, 1408 switches::kDisableDirectNPAPIRequests,
1408 switches::kDisableDisplayList2dCanvas, 1409 switches::kDisableDisplayList2dCanvas,
(...skipping 1402 matching lines...) Expand 10 before | Expand all | Expand 10 after
2811 2812
2812 // Skip widgets in other processes. 2813 // Skip widgets in other processes.
2813 if (rvh->GetProcess()->GetID() != GetID()) 2814 if (rvh->GetProcess()->GetID() != GetID())
2814 continue; 2815 continue;
2815 2816
2816 rvh->OnWebkitPreferencesChanged(); 2817 rvh->OnWebkitPreferencesChanged();
2817 } 2818 }
2818 } 2819 }
2819 2820
2820 } // namespace content 2821 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698