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

Side by Side Diff: content/shell/renderer/layout_test/blink_test_runner.cc

Issue 1226163015: CL for perf tryjob on win (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | « content/renderer/gpu/render_widget_compositor.cc ('k') | tools/run-perf-test.cfg » ('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 #include "content/shell/renderer/layout_test/blink_test_runner.h" 5 #include "content/shell/renderer/layout_test/blink_test_runner.h"
6 6
7 #include <algorithm> 7 #include <algorithm>
8 #include <clocale> 8 #include <clocale>
9 #include <cmath> 9 #include <cmath>
10 10
(...skipping 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 if (test_config_.enable_pixel_dumping && 793 if (test_config_.enable_pixel_dumping &&
794 interfaces->TestRunner()->ShouldGeneratePixelResults()) { 794 interfaces->TestRunner()->ShouldGeneratePixelResults()) {
795 CHECK(render_view()->GetWebView()->isAcceleratedCompositingActive()); 795 CHECK(render_view()->GetWebView()->isAcceleratedCompositingActive());
796 proxy()->CapturePixelsAsync(base::Bind( 796 proxy()->CapturePixelsAsync(base::Bind(
797 &BlinkTestRunner::CaptureDumpPixels, base::Unretained(this))); 797 &BlinkTestRunner::CaptureDumpPixels, base::Unretained(this)));
798 return; 798 return;
799 } 799 }
800 } 800 }
801 #ifndef NDEBUG 801 #ifndef NDEBUG
802 if (base::CommandLine::ForCurrentProcess()->HasSwitch( 802 if (base::CommandLine::ForCurrentProcess()->HasSwitch(
803 switches::kEnableSlimmingPaint) || 803 switches::kEnableSlimmingPaint)) {
804 !base::CommandLine::ForCurrentProcess()->HasSwitch(
805 switches::kDisableSlimmingPaint)) {
806 // Force a layout/paint by the end of the test to ensure test coverage of 804 // Force a layout/paint by the end of the test to ensure test coverage of
807 // incremental painting in slimming paint mode. 805 // incremental painting in slimming paint mode.
808 proxy()->LayoutAndPaintAsyncThen(base::Bind( 806 proxy()->LayoutAndPaintAsyncThen(base::Bind(
809 &BlinkTestRunner::CaptureDumpComplete, base::Unretained(this))); 807 &BlinkTestRunner::CaptureDumpComplete, base::Unretained(this)));
810 return; 808 return;
811 } 809 }
812 #endif 810 #endif
813 CaptureDumpComplete(); 811 CaptureDumpComplete();
814 } 812 }
815 813
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 895
898 leak_detector_->TryLeakDetection(main_frame); 896 leak_detector_->TryLeakDetection(main_frame);
899 } 897 }
900 898
901 void BlinkTestRunner::ReportLeakDetectionResult( 899 void BlinkTestRunner::ReportLeakDetectionResult(
902 const LeakDetectionResult& report) { 900 const LeakDetectionResult& report) {
903 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report)); 901 Send(new ShellViewHostMsg_LeakDetectionDone(routing_id(), report));
904 } 902 }
905 903
906 } // namespace content 904 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/gpu/render_widget_compositor.cc ('k') | tools/run-perf-test.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698