Fix google-explicit-constructor warnings.

Bug: 28341362
Change-Id: Idadc9ad22fdd9d014c8fe0522c89b6ec9d05ae98
diff --git a/tests/binder_test.cpp b/tests/binder_test.cpp
index bdc147a..4a9439d 100644
--- a/tests/binder_test.cpp
+++ b/tests/binder_test.cpp
@@ -69,7 +69,7 @@
 
 class TimedOperation : public Stopwatch {
 public:
-    TimedOperation(std::string name): mName(name) {}
+    explicit TimedOperation(const std::string &name): mName(name) {}
     virtual ~TimedOperation() {
         fprintf(stderr, "    %s: %6.1f ms\n", mName.c_str(), timeTaken());
     }