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

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: Fix compile on other OSes. 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 1377 matching lines...) Expand 10 before | Expand all | Expand 10 after
1388 // with any associated values) if present in the browser command line. 1388 // with any associated values) if present in the browser command line.
1389 static const char* const kSwitchNames[] = { 1389 static const char* const kSwitchNames[] = {
1390 switches::kAgcStartupMinVolume, 1390 switches::kAgcStartupMinVolume,
1391 switches::kAllowLoopbackInPeerConnection, 1391 switches::kAllowLoopbackInPeerConnection,
1392 switches::kAndroidFontsPath, 1392 switches::kAndroidFontsPath,
1393 switches::kAudioBufferSize, 1393 switches::kAudioBufferSize,
1394 switches::kBlinkPlatformLogChannels, 1394 switches::kBlinkPlatformLogChannels,
1395 switches::kBlinkSettings, 1395 switches::kBlinkSettings,
1396 switches::kDefaultTileWidth, 1396 switches::kDefaultTileWidth,
1397 switches::kDefaultTileHeight, 1397 switches::kDefaultTileHeight,
1398 switches::kDisable2dCanvasImageChromium,
1398 switches::kDisable3DAPIs, 1399 switches::kDisable3DAPIs,
1399 switches::kDisableAcceleratedJpegDecoding, 1400 switches::kDisableAcceleratedJpegDecoding,
1400 switches::kDisableAcceleratedVideoDecode, 1401 switches::kDisableAcceleratedVideoDecode,
1401 switches::kDisableBlinkFeatures, 1402 switches::kDisableBlinkFeatures,
1402 switches::kDisableBreakpad, 1403 switches::kDisableBreakpad,
1403 switches::kDisablePreferCompositingToLCDText, 1404 switches::kDisablePreferCompositingToLCDText,
1404 switches::kDisableDatabases, 1405 switches::kDisableDatabases,
1405 switches::kDisableDelayAgnosticAec, 1406 switches::kDisableDelayAgnosticAec,
1406 switches::kDisableDirectNPAPIRequests, 1407 switches::kDisableDirectNPAPIRequests,
1407 switches::kDisableDisplayList2dCanvas, 1408 switches::kDisableDisplayList2dCanvas,
(...skipping 1404 matching lines...) Expand 10 before | Expand all | Expand 10 after
2812 2813
2813 // Skip widgets in other processes. 2814 // Skip widgets in other processes.
2814 if (rvh->GetProcess()->GetID() != GetID()) 2815 if (rvh->GetProcess()->GetID() != GetID())
2815 continue; 2816 continue;
2816 2817
2817 rvh->OnWebkitPreferencesChanged(); 2818 rvh->OnWebkitPreferencesChanged();
2818 } 2819 }
2819 } 2820 }
2820 2821
2821 } // namespace content 2822 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698