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

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') | content/public/common/content_switches.cc » ('J')
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 888 matching lines...) Expand 10 before | Expand all | Expand 10 after
899 switches::kJavaScriptFlags, 899 switches::kJavaScriptFlags,
900 switches::kLoggingLevel, 900 switches::kLoggingLevel,
901 switches::kMemoryMetrics, 901 switches::kMemoryMetrics,
902 #if defined(OS_ANDROID) 902 #if defined(OS_ANDROID)
903 switches::kNetworkCountryIso, 903 switches::kNetworkCountryIso,
904 switches::kDisableGestureRequirementForMediaPlayback, 904 switches::kDisableGestureRequirementForMediaPlayback,
905 switches::kUseExternalVideoSurfaceThresholdInPixels, 905 switches::kUseExternalVideoSurfaceThresholdInPixels,
906 #endif 906 #endif
907 switches::kNoReferrers, 907 switches::kNoReferrers,
908 switches::kNoSandbox, 908 switches::kNoSandbox,
909 switches::kEnableVtune,
909 switches::kPpapiInProcess, 910 switches::kPpapiInProcess,
910 switches::kRegisterPepperPlugins, 911 switches::kRegisterPepperPlugins,
911 switches::kRendererAssertTest, 912 switches::kRendererAssertTest,
912 #if defined(OS_POSIX) 913 #if defined(OS_POSIX)
913 switches::kChildCleanExit, 914 switches::kChildCleanExit,
914 #endif 915 #endif
915 switches::kRendererStartupDialog, 916 switches::kRendererStartupDialog,
916 switches::kShowPaintRects, 917 switches::kShowPaintRects,
917 switches::kSitePerProcess, 918 switches::kSitePerProcess,
918 switches::kTestSandbox, 919 switches::kTestSandbox,
(...skipping 827 matching lines...) Expand 10 before | Expand all | Expand 10 after
1746 TRACE_EVENT0("renderer_host", 1747 TRACE_EVENT0("renderer_host",
1747 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1748 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1748 AcceleratedSurfaceMsg_BufferPresented_Params ack_params; 1749 AcceleratedSurfaceMsg_BufferPresented_Params ack_params;
1749 ack_params.sync_point = 0; 1750 ack_params.sync_point = 0;
1750 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id, 1751 RenderWidgetHostImpl::AcknowledgeBufferPresent(route_id,
1751 gpu_process_host_id, 1752 gpu_process_host_id,
1752 ack_params); 1753 ack_params);
1753 } 1754 }
1754 1755
1755 } // namespace content 1756 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content.gyp » ('j') | content/public/common/content_switches.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698