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

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

Issue 10832183: Add CSS exclusions command-line switch (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Adding alternate email to AUTHORS file Created 8 years, 4 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
« no previous file with comments | « AUTHORS ('k') | content/public/common/content_switches.h » ('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 #if defined(OS_WIN) 10 #if defined(OS_WIN)
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after
745 switches::kEnableScriptedSpeech, 745 switches::kEnableScriptedSpeech,
746 switches::kDisableThreadedAnimation, 746 switches::kDisableThreadedAnimation,
747 #if defined(OS_ANDROID) 747 #if defined(OS_ANDROID)
748 switches::kEnableWebAudio, 748 switches::kEnableWebAudio,
749 #else 749 #else
750 switches::kDisableWebAudio, 750 switches::kDisableWebAudio,
751 #endif 751 #endif
752 switches::kDisableWebSockets, 752 switches::kDisableWebSockets,
753 switches::kDomAutomationController, 753 switches::kDomAutomationController,
754 switches::kEnableAccessibilityLogging, 754 switches::kEnableAccessibilityLogging,
755 switches::kEnableCssExclusions,
755 switches::kEnableDCHECK, 756 switches::kEnableDCHECK,
756 switches::kEnableEncryptedMedia, 757 switches::kEnableEncryptedMedia,
757 switches::kEnableFixedLayout, 758 switches::kEnableFixedLayout,
758 switches::kEnableGPUServiceLogging, 759 switches::kEnableGPUServiceLogging,
759 switches::kEnableGPUClientLogging, 760 switches::kEnableGPUClientLogging,
760 switches::kEnableGpuBenchmarking, 761 switches::kEnableGpuBenchmarking,
761 switches::kEnableLogging, 762 switches::kEnableLogging,
762 switches::kEnableMediaSource, 763 switches::kEnableMediaSource,
763 switches::kEnablePartialSwap, 764 switches::kEnablePartialSwap,
764 switches::kEnablePeerConnection, 765 switches::kEnablePeerConnection,
(...skipping 742 matching lines...) Expand 10 before | Expand all | Expand 10 after
1507 int32 route_id, 1508 int32 route_id,
1508 int32 gpu_process_host_id) { 1509 int32 gpu_process_host_id) {
1509 TRACE_EVENT0("renderer_host", 1510 TRACE_EVENT0("renderer_host",
1510 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1511 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1511 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1512 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1512 gpu_process_host_id, 1513 gpu_process_host_id,
1513 0); 1514 0);
1514 } 1515 }
1515 1516
1516 } // namespace content 1517 } // namespace content
OLDNEW
« no previous file with comments | « AUTHORS ('k') | content/public/common/content_switches.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698