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

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

Issue 25454002: Add a flag for fast text autosizing (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | content/child/runtime_features.cc » ('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 (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 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 903 matching lines...) Expand 10 before | Expand all | Expand 10 after
914 switches::kEnableCompositingForTransition, 914 switches::kEnableCompositingForTransition,
915 switches::kEnableDCHECK, 915 switches::kEnableDCHECK,
916 switches::kEnableDeadlineScheduling, 916 switches::kEnableDeadlineScheduling,
917 switches::kEnableDeferredImageDecoding, 917 switches::kEnableDeferredImageDecoding,
918 switches::kEnableDelegatedRenderer, 918 switches::kEnableDelegatedRenderer,
919 switches::kEnableEac3Playback, 919 switches::kEnableEac3Playback,
920 switches::kEnableEncryptedMedia, 920 switches::kEnableEncryptedMedia,
921 switches::kEnableExperimentalCanvasFeatures, 921 switches::kEnableExperimentalCanvasFeatures,
922 switches::kEnableExperimentalWebPlatformFeatures, 922 switches::kEnableExperimentalWebPlatformFeatures,
923 switches::kEnableExperimentalWebSocket, 923 switches::kEnableExperimentalWebSocket,
924 switches::kEnableFastTextAutosizing,
924 switches::kEnableFixedLayout, 925 switches::kEnableFixedLayout,
925 switches::kEnableGpuBenchmarking, 926 switches::kEnableGpuBenchmarking,
926 switches::kEnableGPUClientLogging, 927 switches::kEnableGPUClientLogging,
927 switches::kEnableGpuClientTracing, 928 switches::kEnableGpuClientTracing,
928 switches::kEnableGPUServiceLogging, 929 switches::kEnableGPUServiceLogging,
929 switches::kEnableHighDpiCompositingForFixedPosition, 930 switches::kEnableHighDpiCompositingForFixedPosition,
930 switches::kEnableHTMLImports, 931 switches::kEnableHTMLImports,
931 switches::kEnableInbandTextTracks, 932 switches::kEnableInbandTextTracks,
932 switches::kEnableInputModeAttribute, 933 switches::kEnableInputModeAttribute,
933 switches::kEnableLogging, 934 switches::kEnableLogging,
(...skipping 857 matching lines...) Expand 10 before | Expand all | Expand 10 after
1791 // Skip widgets in other processes. 1792 // Skip widgets in other processes.
1792 if (widget->GetProcess()->GetID() != GetID()) 1793 if (widget->GetProcess()->GetID() != GetID())
1793 continue; 1794 continue;
1794 1795
1795 RenderViewHost* rvh = RenderViewHost::From(widget); 1796 RenderViewHost* rvh = RenderViewHost::From(widget);
1796 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1797 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1797 } 1798 }
1798 } 1799 }
1799 1800
1800 } // namespace content 1801 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/child/runtime_features.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698