Fix clang-tidy performance warnings in system/tpm.

* Use const reference type for parameters to avoid unnecessary copy.

Bug: 30407689
Change-Id: I6e6fbcf806eb6ebd4b984afc1d962fc3c1d69b00
Test: build with WITH_TIDY=1
diff --git a/trunks/background_command_transceiver.cc b/trunks/background_command_transceiver.cc
index 51858ca..97255c3 100644
--- a/trunks/background_command_transceiver.cc
+++ b/trunks/background_command_transceiver.cc
@@ -37,7 +37,7 @@
 // A callback which posts another |callback| to a given |task_runner|.
 void PostCallbackToTaskRunner(
     const trunks::CommandTransceiver::ResponseCallback& callback,
-    scoped_refptr<base::SingleThreadTaskRunner> task_runner,
+    const scoped_refptr<base::SingleThreadTaskRunner>& task_runner,
     const std::string& response) {
   base::Closure task = base::Bind(callback, response);
   task_runner->PostTask(FROM_HERE, task);