| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_WIN_SCOPED_VARIANT_H_ | 5 #ifndef BASE_WIN_SCOPED_VARIANT_H_ |
| 6 #define BASE_WIN_SCOPED_VARIANT_H_ | 6 #define BASE_WIN_SCOPED_VARIANT_H_ |
| 7 | 7 |
| 8 #include <windows.h> | 8 #include <windows.h> |
| 9 #include <oleauto.h> | 9 #include <oleauto.h> |
| 10 | 10 |
| (...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 154 | 154 |
| 155 private: | 155 private: |
| 156 // Comparison operators for ScopedVariant are not supported at this point. | 156 // Comparison operators for ScopedVariant are not supported at this point. |
| 157 // Use the Compare method instead. | 157 // Use the Compare method instead. |
| 158 bool operator==(const ScopedVariant& var) const; | 158 bool operator==(const ScopedVariant& var) const; |
| 159 bool operator!=(const ScopedVariant& var) const; | 159 bool operator!=(const ScopedVariant& var) const; |
| 160 DISALLOW_COPY_AND_ASSIGN(ScopedVariant); | 160 DISALLOW_COPY_AND_ASSIGN(ScopedVariant); |
| 161 }; | 161 }; |
| 162 | 162 |
| 163 } // namespace win | 163 } // namespace win |
| 164 } // namesoace base | 164 } // namespace base |
| 165 | 165 |
| 166 #endif // BASE_WIN_SCOPED_VARIANT_H_ | 166 #endif // BASE_WIN_SCOPED_VARIANT_H_ |
| OLD | NEW |