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

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

Issue 38793007: Experimental viewport meta tag support for desktop (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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
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 955 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 switches::kEnableSkiaBenchmarking, 966 switches::kEnableSkiaBenchmarking,
967 switches::kEnableSoftwareCompositing, 967 switches::kEnableSoftwareCompositing,
968 switches::kEnableSpeechSynthesis, 968 switches::kEnableSpeechSynthesis,
969 switches::kEnableStatsTable, 969 switches::kEnableStatsTable,
970 switches::kEnableStrictSiteIsolation, 970 switches::kEnableStrictSiteIsolation,
971 switches::kEnableThreadedCompositing, 971 switches::kEnableThreadedCompositing,
972 switches::kEnableUniversalAcceleratedOverflowScroll, 972 switches::kEnableUniversalAcceleratedOverflowScroll,
973 switches::kEnableTouchDragDrop, 973 switches::kEnableTouchDragDrop,
974 switches::kEnableTouchEditing, 974 switches::kEnableTouchEditing,
975 switches::kEnableViewport, 975 switches::kEnableViewport,
976 switches::kEnableViewportMeta,
977 switches::kMainFrameResizesAreOrientationChanges,
976 switches::kEnableVtune, 978 switches::kEnableVtune,
977 switches::kEnableWebAnimationsCSS, 979 switches::kEnableWebAnimationsCSS,
978 switches::kEnableWebAnimationsSVG, 980 switches::kEnableWebAnimationsSVG,
979 switches::kEnableWebGLDraftExtensions, 981 switches::kEnableWebGLDraftExtensions,
980 switches::kEnableWebMIDI, 982 switches::kEnableWebMIDI,
981 switches::kForceDeviceScaleFactor, 983 switches::kForceDeviceScaleFactor,
982 switches::kFullMemoryCrashReport, 984 switches::kFullMemoryCrashReport,
983 switches::kJavaScriptFlags, 985 switches::kJavaScriptFlags,
984 switches::kLoggingLevel, 986 switches::kLoggingLevel,
985 switches::kMaxUntiledLayerWidth, 987 switches::kMaxUntiledLayerWidth,
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
1837 // Skip widgets in other processes. 1839 // Skip widgets in other processes.
1838 if (widget->GetProcess()->GetID() != GetID()) 1840 if (widget->GetProcess()->GetID() != GetID())
1839 continue; 1841 continue;
1840 1842
1841 RenderViewHost* rvh = RenderViewHost::From(widget); 1843 RenderViewHost* rvh = RenderViewHost::From(widget);
1842 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1844 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1843 } 1845 }
1844 } 1846 }
1845 1847
1846 } // namespace content 1848 } // namespace content
OLDNEW
« no previous file with comments | « content/browser/android/content_startup_flags.cc ('k') | content/browser/renderer_host/render_view_host_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698