| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ | 5 #ifndef CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ |
| 6 #define CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ | 6 #define CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ |
| 7 #pragma once | |
| 8 | 7 |
| 9 #ifndef STRICT | 8 #ifndef STRICT |
| 10 #define STRICT | 9 #define STRICT |
| 11 #endif | 10 #endif |
| 12 | 11 |
| 13 #define _ATL_FREE_THREADED | 12 #define _ATL_FREE_THREADED |
| 14 | 13 |
| 15 #define _ATL_NO_AUTOMATIC_NAMESPACE | 14 #define _ATL_NO_AUTOMATIC_NAMESPACE |
| 16 | 15 |
| 17 // Service has no COM objects. http://support.microsoft.com/kb/2480736 | 16 // Service has no COM objects. http://support.microsoft.com/kb/2480736 |
| 18 #define _ATL_NO_COM_SUPPORT | 17 #define _ATL_NO_COM_SUPPORT |
| 19 | 18 |
| 20 // some CString constructors will be explicit | 19 // some CString constructors will be explicit |
| 21 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS | 20 #define _ATL_CSTRING_EXPLICIT_CONSTRUCTORS |
| 22 | 21 |
| 23 #define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW | 22 #define ATL_NO_ASSERT_ON_DESTROY_NONEXISTENT_WINDOW |
| 24 | 23 |
| 25 #include <atlbase.h> | 24 #include <atlbase.h> |
| 26 #include <atlcom.h> | 25 #include <atlcom.h> |
| 27 #include <atlctl.h> | 26 #include <atlctl.h> |
| 28 | 27 |
| 29 #endif // CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ | 28 #endif // CLOUD_PRINT_SERVICE_CLOUD_PRINT_SERVICE_H_ |
| 30 | 29 |
| OLD | NEW |