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

Unified Diff: webrtc/base/fileutils.cc

Issue 2587423002: Drop unneeded includes of base/stream.h. (Closed)
Patch Set: Created 4 years 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/base/base64_unittest.cc ('k') | webrtc/common_video/h264/sps_vui_rewriter_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/fileutils.cc
diff --git a/webrtc/base/fileutils.cc b/webrtc/base/fileutils.cc
index cb63cce7d630ca9379723261ff29ea502808e19a..a88399505469753dd9734a36d09df1d5898cacf7 100644
--- a/webrtc/base/fileutils.cc
+++ b/webrtc/base/fileutils.cc
@@ -14,7 +14,6 @@
#include "webrtc/base/checks.h"
#include "webrtc/base/pathutils.h"
#include "webrtc/base/stringutils.h"
-#include "webrtc/base/stream.h"
#if defined(WEBRTC_WIN)
#include "webrtc/base/win32filesystem.h"
@@ -136,7 +135,7 @@ DirectoryIterator* FilesystemInterface::IterateDirectory() {
bool FilesystemInterface::DeleteFolderContents(const Pathname &folder) {
bool success = true;
- VERIFY(IsFolder(folder));
+ RTC_CHECK(IsFolder(folder));
DirectoryIterator *di = IterateDirectory();
if (!di)
return false;
« no previous file with comments | « webrtc/base/base64_unittest.cc ('k') | webrtc/common_video/h264/sps_vui_rewriter_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698