| OLD | NEW |
| 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // Stand alone media player application used for testing the media library. | 5 // Stand alone media player application used for testing the media library. |
| 6 | 6 |
| 7 #ifndef MEDIA_PLAYER_PLAYER_WTL_H_ | 7 #ifndef MEDIA_TOOLS_PLAYER_WTL_PLAYER_WTL_H_ |
| 8 #define MEDIA_PLAYER_PLAYER_WTL_H_ | 8 #define MEDIA_TOOLS_PLAYER_WTL_PLAYER_WTL_H_ |
| 9 | 9 |
| 10 // Enable timing code by turning on TESTING macro. | 10 // Enable timing code by turning on TESTING macro. |
| 11 //#define TESTING 1 | 11 //#define TESTING 1 |
| 12 | 12 |
| 13 // ATL and WTL require order dependent includes. | 13 // ATL and WTL require order dependent includes. |
| 14 #include <atlbase.h> // NOLINT | 14 #include <atlbase.h> // NOLINT |
| 15 #include <atlapp.h> // NOLINT | 15 #include <atlapp.h> // NOLINT |
| 16 #include <atlcrack.h> // NOLINT | 16 #include <atlcrack.h> // NOLINT |
| 17 #include <atlctrls.h> // NOLINT | 17 #include <atlctrls.h> // NOLINT |
| 18 #include <atlctrlw.h> // NOLINT | 18 #include <atlctrlw.h> // NOLINT |
| 19 #include <atldlgs.h> // NOLINT | 19 #include <atldlgs.h> // NOLINT |
| 20 #include <atlframe.h> // NOLINT | 20 #include <atlframe.h> // NOLINT |
| 21 #include <atlmisc.h> // NOLINT | 21 #include <atlmisc.h> // NOLINT |
| 22 #include <atlscrl.h> // NOLINT | 22 #include <atlscrl.h> // NOLINT |
| 23 #include <winspool.h> // NOLINT | 23 #include <winspool.h> // NOLINT |
| 24 #include <atlprint.h> // NOLINT | 24 #include <atlprint.h> // NOLINT |
| 25 | 25 |
| 26 extern CAppModule g_module; | 26 extern CAppModule g_module; |
| 27 | 27 |
| 28 #endif // MEDIA_PLAYER_PLAYER_WTL_H_ | 28 #endif // MEDIA_TOOLS_PLAYER_WTL_PLAYER_WTL_H_ |
| OLD | NEW |