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

Unified Diff: webrtc/tools/frame_editing/frame_editing_lib.cc

Issue 2675723002: Remove all occurrences of "using std::string". (Closed)
Patch Set: Created 3 years, 11 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
« no previous file with comments | « webrtc/tools/frame_analyzer/video_quality_analysis.cc ('k') | webrtc/tools/simple_command_line_parser.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/tools/frame_editing/frame_editing_lib.cc
diff --git a/webrtc/tools/frame_editing/frame_editing_lib.cc b/webrtc/tools/frame_editing/frame_editing_lib.cc
index bb6a75edaab30e01850107de78a7ab6ea28bc8f1..f68dc1ffe9afa9a77d5b7498562fc135380cb0dc 100644
--- a/webrtc/tools/frame_editing/frame_editing_lib.cc
+++ b/webrtc/tools/frame_editing/frame_editing_lib.cc
@@ -18,13 +18,11 @@
#include "webrtc/tools/frame_editing/frame_editing_lib.h"
#include "webrtc/typedefs.h"
-using std::string;
-
namespace webrtc {
-int EditFrames(const string& in_path, int width, int height,
+int EditFrames(const std::string& in_path, int width, int height,
int first_frame_to_process, int interval,
- int last_frame_to_process, const string& out_path) {
+ int last_frame_to_process, const std::string& out_path) {
if (last_frame_to_process < first_frame_to_process) {
fprintf(stderr, "The set of frames to cut is empty! (l < f)\n");
return -10;
« no previous file with comments | « webrtc/tools/frame_analyzer/video_quality_analysis.cc ('k') | webrtc/tools/simple_command_line_parser.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698