1 // Copyright 2019 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROMECAST_EXTERNAL_MOJO_PUBLIC_CPP_COMMON_H_ 6 #define CHROMECAST_EXTERNAL_MOJO_PUBLIC_CPP_COMMON_H_ 7 8 #include <string> 9 10 namespace chromecast { 11 namespace external_mojo { 12 13 // Returns the Unix domain socket path to use to connect to the Mojo broker. 14 // You can set the path on the command line with --mojo_broker_path=<path>. 15 std::string GetBrokerPath(); 16 17 } // namespace external_mojo 18 } // namespace chromecast 19 20 #endif // CHROMECAST_EXTERNAL_MOJO_PUBLIC_CPP_COMMON_H_ 21