Index: tools/battor_agent/battor_finder.h |
diff --git a/tools/battor_agent/battor_finder.h b/tools/battor_agent/battor_finder.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e19e81e30eafd61c87e6ce54a8d4033a55db610b |
--- /dev/null |
+++ b/tools/battor_agent/battor_finder.h |
@@ -0,0 +1,19 @@ |
+// Copyright 2015 The Chromium Authors. All rights reserved. |
sky
2016/01/21 22:59:20
nit: 2016
charliea (OOO until 10-5)
2016/01/22 16:11:04
Done.
|
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef TOOLS_BATTOR_AGENT_BATTOR_FINDER_H_ |
+#define TOOLS_BATTOR_AGENT_BATTOR_FINDER_H_ |
+ |
+#include <string> |
+ |
+namespace battor { |
+ |
+class BattOrFinder { |
+ public: |
+ static std::string FindBattOr(); |
+}; |
sky
2016/01/21 22:59:20
private: DISALLOW...
charliea (OOO until 10-5)
2016/01/22 16:11:03
Done.
|
+ |
+} // namespace battor |
+ |
+#endif // TOOLS_BATTOR_AGENT_BATTOR_FINDER_H_ |