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

Unified Diff: remoting/run_all_unittests.cc

Issue 6537022: Move media library path resolution into Chrome path provider. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: And again, this time with working tests... Created 9 years, 10 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: remoting/run_all_unittests.cc
diff --git a/remoting/run_all_unittests.cc b/remoting/run_all_unittests.cc
index 16e4f74617241118208bab093e2160881282baf0..d2bdda127adb960e90951335c3894509fbb1f730 100644
--- a/remoting/run_all_unittests.cc
+++ b/remoting/run_all_unittests.cc
@@ -14,7 +14,8 @@ int main(int argc, char** argv) {
// Load the media library so we can use libvpx.
FilePath path;
PathService::Get(base::DIR_MODULE, &path);
- CHECK(media::InitializeMediaLibrary(path))
+ media::InitializeMediaLibrary(path);
+ CHECK(media::IsMediaLibraryInitialized())
<< "Cannot load media library";
return test_suite.Run();
}

Powered by Google App Engine
This is Rietveld 408576698