diff options
Diffstat (limited to 'chrome/test/security_tests/ipc_security_tests.cc')
-rw-r--r-- | chrome/test/security_tests/ipc_security_tests.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/test/security_tests/ipc_security_tests.cc b/chrome/test/security_tests/ipc_security_tests.cc index 038d662..3b026b3 100644 --- a/chrome/test/security_tests/ipc_security_tests.cc +++ b/chrome/test/security_tests/ipc_security_tests.cc @@ -102,7 +102,7 @@ HANDLE MakeServerPluginPipe(const std::wstring& prefix, int channel) { struct Context { HANDLE pipe; - Context(HANDLE arg_pipe) : pipe(arg_pipe) { + explicit Context(HANDLE arg_pipe) : pipe(arg_pipe) { } }; |