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

Unified Diff: content/browser/renderer_host/media/web_contents_video_capture_device_unittest.cc

Issue 12767006: [Cleanup] Remove StringPrintf from global namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase, once more Created 7 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: content/browser/renderer_host/media/web_contents_video_capture_device_unittest.cc
diff --git a/content/browser/renderer_host/media/web_contents_video_capture_device_unittest.cc b/content/browser/renderer_host/media/web_contents_video_capture_device_unittest.cc
index 8bb0e35f761310644b6048d51fb98b9da1e96def..b53eaddf6aa73d2de735688fe7c3da4f8c3625e2 100644
--- a/content/browser/renderer_host/media/web_contents_video_capture_device_unittest.cc
+++ b/content/browser/renderer_host/media/web_contents_video_capture_device_unittest.cc
@@ -490,8 +490,9 @@ TEST_F(WebContentsVideoCaptureDeviceTest, GoesThroughAllTheMotions) {
bool use_video_frames = false;
for (int i = 0; i < 4; i++, use_video_frames = !use_video_frames) {
- SCOPED_TRACE(StringPrintf("Using %s copy path, iteration #%d",
- use_video_frames ? "VideoFrame" : "SkBitmap", i));
+ SCOPED_TRACE(base::StringPrintf(
+ "Using %s copy path, iteration #%d",
+ use_video_frames ? "VideoFrame" : "SkBitmap", i));
source()->SetCanCopyToVideoFrame(use_video_frames);
source()->SetSolidColor(SK_ColorRED);
ASSERT_NO_FATAL_FAILURE(source()->WaitForNextBackingStoreCopy());

Powered by Google App Engine
This is Rietveld 408576698