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

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

Issue 14630005: This patch is to enable the vtune profiling tool support in chrome. (Closed) Base URL: https://src.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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
« no previous file with comments | « no previous file | content/content.gyp » ('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 899 matching lines...) Expand 10 before | Expand all | Expand 10 after
910 switches::kMemoryMetrics, 910 switches::kMemoryMetrics,
911 #if defined(OS_ANDROID) 911 #if defined(OS_ANDROID)
912 switches::kNetworkCountryIso, 912 switches::kNetworkCountryIso,
913 switches::kDisableGestureRequirementForMediaPlayback, 913 switches::kDisableGestureRequirementForMediaPlayback,
914 #endif 914 #endif
915 #if defined(GOOGLE_TV) 915 #if defined(GOOGLE_TV)
916 switches::kUseExternalVideoSurfaceThresholdInPixels, 916 switches::kUseExternalVideoSurfaceThresholdInPixels,
917 #endif 917 #endif
918 switches::kNoReferrers, 918 switches::kNoReferrers,
919 switches::kNoSandbox, 919 switches::kNoSandbox,
920 switches::kEnableVtune,
920 switches::kPpapiInProcess, 921 switches::kPpapiInProcess,
921 switches::kRegisterPepperPlugins, 922 switches::kRegisterPepperPlugins,
922 switches::kRendererAssertTest, 923 switches::kRendererAssertTest,
923 #if defined(OS_POSIX) 924 #if defined(OS_POSIX)
924 switches::kChildCleanExit, 925 switches::kChildCleanExit,
925 #endif 926 #endif
926 switches::kRendererStartupDialog, 927 switches::kRendererStartupDialog,
927 switches::kShowPaintRects, 928 switches::kShowPaintRects,
928 switches::kSitePerProcess, 929 switches::kSitePerProcess,
929 switches::kTestSandbox, 930 switches::kTestSandbox,
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1757 TRACE_EVENT0("renderer_host", 1758 TRACE_EVENT0("renderer_host",
1758 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1759 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1759 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1760 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1760 ack_params.sync_point = 0; 1761 ack_params.sync_point = 0;
1761 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1762 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1762 gpu_process_host_id, 1763 gpu_process_host_id,
1763 ack_params); 1764 ack_params);
1764 } 1765 }
1765 1766
1766 } // namespace content 1767 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698