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

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

Issue 10532058: added gpu_benchmarking_extension boilerplate and hooked it up to a new switch. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed merge conflict Created 8 years, 6 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_renderer.gypi » ('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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 switches::kDisableWebAudio, 671 switches::kDisableWebAudio,
672 switches::kDisableWebSockets, 672 switches::kDisableWebSockets,
673 switches::kDomAutomationController, 673 switches::kDomAutomationController,
674 switches::kEnableAccessibilityLogging, 674 switches::kEnableAccessibilityLogging,
675 switches::kEnableDCHECK, 675 switches::kEnableDCHECK,
676 switches::kEnableEncryptedMedia, 676 switches::kEnableEncryptedMedia,
677 switches::kEnableFixedLayout, 677 switches::kEnableFixedLayout,
678 switches::kEnableGamepad, 678 switches::kEnableGamepad,
679 switches::kEnableGPUServiceLogging, 679 switches::kEnableGPUServiceLogging,
680 switches::kEnableGPUClientLogging, 680 switches::kEnableGPUClientLogging,
681 switches::kEnableGpuBenchmarking,
681 switches::kEnableLogging, 682 switches::kEnableLogging,
682 switches::kEnableMediaSource, 683 switches::kEnableMediaSource,
683 switches::kEnablePartialSwap, 684 switches::kEnablePartialSwap,
684 switches::kEnablePeerConnection, 685 switches::kEnablePeerConnection,
685 switches::kEnablePerTilePainting, 686 switches::kEnablePerTilePainting,
686 switches::kEnableShadowDOM, 687 switches::kEnableShadowDOM,
687 switches::kEnableStrictSiteIsolation, 688 switches::kEnableStrictSiteIsolation,
688 switches::kEnableStyleScoped, 689 switches::kEnableStyleScoped,
689 switches::kDisableFullScreen, 690 switches::kDisableFullScreen,
690 switches::kEnablePepperTesting, 691 switches::kEnablePepperTesting,
(...skipping 671 matching lines...) Expand 10 before | Expand all | Expand 10 after
1362 uint64 surface_handle, 1363 uint64 surface_handle,
1363 int32 route_id, 1364 int32 route_id,
1364 int32 gpu_process_host_id) { 1365 int32 gpu_process_host_id) {
1365 TRACE_EVENT0("renderer_host", 1366 TRACE_EVENT0("renderer_host",
1366 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost"); 1367 "RenderWidgetHostImpl::OnCompositorSurfaceBuffersSwappedNoHost");
1367 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id, 1368 RenderWidgetHostImpl::AcknowledgeSwapBuffers(route_id,
1368 gpu_process_host_id); 1369 gpu_process_host_id);
1369 } 1370 }
1370 1371
1371 } // namespace content 1372 } // namespace content
OLDNEW
« no previous file with comments | « no previous file | content/content_renderer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698