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

Unified Diff: media/filters/ffmpeg_glue.cc

Issue 6997006: iwyu: Include stringprintf.h where appropriate, part 1. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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 side-by-side diff with in-line comments
Download patch
Index: media/filters/ffmpeg_glue.cc
diff --git a/media/filters/ffmpeg_glue.cc b/media/filters/ffmpeg_glue.cc
index 236b3d61369b45a3184c6d8eeb75fb96f6c0588e..23f0a364ddad5efd108d63544ab5c23e5aa9ab0a 100644
--- a/media/filters/ffmpeg_glue.cc
+++ b/media/filters/ffmpeg_glue.cc
@@ -4,7 +4,8 @@
#include "media/filters/ffmpeg_glue.h"
-#include "base/string_util.h"
+#include "base/logging.h"
+#include "base/stringprintf.h"
#include "media/base/filters.h"
#include "media/ffmpeg/ffmpeg_common.h"
@@ -181,7 +182,7 @@ std::string FFmpegGlue::GetProtocolKey(FFmpegURLProtocol* protocol) {
// Use the FFmpegURLProtocol's memory address to generate the unique string.
// This also has the nice property that adding the same FFmpegURLProtocol
// reference will not generate duplicate entries.
- return StringPrintf("%s://%p", kProtocol, static_cast<void*>(protocol));
+ return base::StringPrintf("%s://%p", kProtocol, static_cast<void*>(protocol));
}
} // namespace media

Powered by Google App Engine
This is Rietveld 408576698