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

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

Issue 1926173002: Erase LinkDisambiguation code on desktop. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: another merge conflict 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
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 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after
1370 switches::kEnableDisplayList2dCanvas, 1370 switches::kEnableDisplayList2dCanvas,
1371 switches::kEnableDistanceFieldText, 1371 switches::kEnableDistanceFieldText,
1372 switches::kEnableExperimentalCanvasFeatures, 1372 switches::kEnableExperimentalCanvasFeatures,
1373 switches::kEnableExperimentalWebPlatformFeatures, 1373 switches::kEnableExperimentalWebPlatformFeatures,
1374 switches::kEnableHeapProfiling, 1374 switches::kEnableHeapProfiling,
1375 switches::kEnableGPUClientLogging, 1375 switches::kEnableGPUClientLogging,
1376 switches::kEnableGpuClientTracing, 1376 switches::kEnableGpuClientTracing,
1377 switches::kEnableGpuMemoryBufferVideoFrames, 1377 switches::kEnableGpuMemoryBufferVideoFrames,
1378 switches::kEnableGPUServiceLogging, 1378 switches::kEnableGPUServiceLogging,
1379 switches::kEnableIconNtp, 1379 switches::kEnableIconNtp,
1380 switches::kEnableLinkDisambiguationPopup,
1381 switches::kEnableLowResTiling, 1380 switches::kEnableLowResTiling,
1382 switches::kEnableMediaSuspend, 1381 switches::kEnableMediaSuspend,
1383 switches::kEnableInbandTextTracks, 1382 switches::kEnableInbandTextTracks,
1384 switches::kEnableLCDText, 1383 switches::kEnableLCDText,
1385 switches::kEnableLogging, 1384 switches::kEnableLogging,
1386 switches::kEnableMemoryBenchmarking, 1385 switches::kEnableMemoryBenchmarking,
1387 switches::kEnableNetworkInformation, 1386 switches::kEnableNetworkInformation,
1388 switches::kEnableOverlayScrollbar, 1387 switches::kEnableOverlayScrollbar,
1389 switches::kEnablePinch, 1388 switches::kEnablePinch,
1390 switches::kEnablePluginPlaceholderTesting, 1389 switches::kEnablePluginPlaceholderTesting,
(...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after
2750 2749
2751 // Skip widgets in other processes. 2750 // Skip widgets in other processes.
2752 if (rvh->GetProcess()->GetID() != GetID()) 2751 if (rvh->GetProcess()->GetID() != GetID())
2753 continue; 2752 continue;
2754 2753
2755 rvh->OnWebkitPreferencesChanged(); 2754 rvh->OnWebkitPreferencesChanged();
2756 } 2755 }
2757 } 2756 }
2758 2757
2759 } // namespace content 2758 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698