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

Unified Diff: remoting/host/simple_host_process.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/host/simple_host_process.cc
diff --git a/remoting/host/simple_host_process.cc b/remoting/host/simple_host_process.cc
index d979e83f97ba589662a999c313b12752dfba042a..6ada25de55e54d8f5d6c86e58786129166efc728 100644
--- a/remoting/host/simple_host_process.cc
+++ b/remoting/host/simple_host_process.cc
@@ -119,7 +119,8 @@ int main(int argc, char** argv) {
FilePath module_path;
PathService::Get(base::DIR_MODULE, &module_path);
- CHECK(media::InitializeMediaLibrary(module_path))
+ media::InitializeMediaLibrary(module_path);
+ CHECK(media::IsMediaLibraryInitialized())
<< "Cannot load media library";
// Construct a chromoting host.

Powered by Google App Engine
This is Rietveld 408576698