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

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

Issue 27238005: Add commandline flag for service workers. (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 | « chrome/browser/about_flags.cc ('k') | content/browser/worker_host/worker_process_host.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 926 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 switches::kEnableLogging, 937 switches::kEnableLogging,
938 switches::kEnableMP3StreamParser, 938 switches::kEnableMP3StreamParser,
939 switches::kEnableMemoryBenchmarking, 939 switches::kEnableMemoryBenchmarking,
940 switches::kEnableOpusPlayback, 940 switches::kEnableOpusPlayback,
941 switches::kEnableOverlayFullscreenVideo, 941 switches::kEnableOverlayFullscreenVideo,
942 switches::kEnableOverlayScrollbars, 942 switches::kEnableOverlayScrollbars,
943 switches::kEnableOverscrollNotifications, 943 switches::kEnableOverscrollNotifications,
944 switches::kEnablePinch, 944 switches::kEnablePinch,
945 switches::kEnablePreparsedJsCaching, 945 switches::kEnablePreparsedJsCaching,
946 switches::kEnablePruneGpuCommandBuffers, 946 switches::kEnablePruneGpuCommandBuffers,
947 switches::kEnableServiceWorker,
947 switches::kEnableSkiaBenchmarking, 948 switches::kEnableSkiaBenchmarking,
948 switches::kEnableSoftwareCompositing, 949 switches::kEnableSoftwareCompositing,
949 switches::kEnableSpeechSynthesis, 950 switches::kEnableSpeechSynthesis,
950 switches::kEnableStatsTable, 951 switches::kEnableStatsTable,
951 switches::kEnableStrictSiteIsolation, 952 switches::kEnableStrictSiteIsolation,
952 switches::kEnableThreadedCompositing, 953 switches::kEnableThreadedCompositing,
953 switches::kEnableUniversalAcceleratedOverflowScroll, 954 switches::kEnableUniversalAcceleratedOverflowScroll,
954 switches::kEnableTouchDragDrop, 955 switches::kEnableTouchDragDrop,
955 switches::kEnableTouchEditing, 956 switches::kEnableTouchEditing,
956 switches::kEnableViewport, 957 switches::kEnableViewport,
(...skipping 845 matching lines...) Expand 10 before | Expand all | Expand 10 after
1802 // Skip widgets in other processes. 1803 // Skip widgets in other processes.
1803 if (widget->GetProcess()->GetID() != GetID()) 1804 if (widget->GetProcess()->GetID() != GetID())
1804 continue; 1805 continue;
1805 1806
1806 RenderViewHost* rvh = RenderViewHost::From(widget); 1807 RenderViewHost* rvh = RenderViewHost::From(widget);
1807 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences()); 1808 rvh->UpdateWebkitPreferences(rvh->GetWebkitPreferences());
1808 } 1809 }
1809 } 1810 }
1810 1811
1811 } // namespace content 1812 } // namespace content
OLDNEW
« no previous file with comments | « chrome/browser/about_flags.cc ('k') | content/browser/worker_host/worker_process_host.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698