| Index: remoting/base/scoped_sc_handle_win.h
|
| diff --git a/remoting/base/scoped_sc_handle_win.h b/remoting/base/scoped_sc_handle_win.h
|
| index 508f5f5d4c6b93f6ffe3386764a1b77ee1bb773d..6de5f257fa56011933985355d845dea00652fd48 100644
|
| --- a/remoting/base/scoped_sc_handle_win.h
|
| +++ b/remoting/base/scoped_sc_handle_win.h
|
| @@ -25,6 +25,11 @@ class ScHandleTraits {
|
| return handle != NULL;
|
| }
|
|
|
| + // Returns true if the handles are the same.
|
| + static bool IsSame(SC_HANDLE lhs, SC_HANDLE rhs) {
|
| + return lhs == rhs;
|
| + }
|
| +
|
| // Returns NULL handle value.
|
| static SC_HANDLE NullHandle() {
|
| return NULL;
|
|
|