commit | 69955372d9c7ab8ff88765eb9d5827f5dd596ae8 | [log] [tgz] |
---|---|---|
author | Mostyn Bramley-Moore <[email protected]> | Wed Jan 24 23:25:58 2018 |
committer | Commit Bot <[email protected]> | Wed Jan 24 23:25:58 2018 |
tree | f04f6191a160e21cbe044609082a3d962603f553 | |
parent | 0bffe3f1a048041312a8b693861d520d009e4dcd [diff] [blame] |
[jumbo] add some missing include guards in //remoting Change-Id: I4e087b8b1da557d6c85dd8c87b678b1fa62bba5f Reviewed-on: https://chromium-review.googlesource.com/883624 Reviewed-by: Joe Downing <[email protected]> Commit-Queue: Mostyn Bramley-Moore <[email protected]> Cr-Commit-Position: refs/heads/master@{#531742}
diff --git a/remoting/host/host_secret.h b/remoting/host/host_secret.h index 63fe590..bb600c9 100644 --- a/remoting/host/host_secret.h +++ b/remoting/host/host_secret.h
@@ -2,6 +2,9 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#ifndef REMOTING_HOST_HOST_SECRET_H_ +#define REMOTING_HOST_HOST_SECRET_H_ + #include <string> namespace remoting { @@ -10,3 +13,5 @@ std::string GenerateSupportHostSecret(); } // namespace remoting + +#endif // REMOTING_HOST_HOST_SECRET_H_