OLD | NEW |
| (Empty) |
1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 // Platform-specific types and definitions for native widget handles. | |
6 | |
7 #ifndef GPU_DEMOS_APP_FRAMEWORK_PLATFORM_H_ | |
8 #define GPU_DEMOS_APP_FRAMEWORK_PLATFORM_H_ | |
9 | |
10 #ifdef _WINDOWS | |
11 #include <windows.h> | |
12 #endif // _WINDOWS | |
13 | |
14 #include "build/build_config.h" | |
15 | |
16 namespace gpu_demos { | |
17 | |
18 #if defined(OS_WIN) | |
19 typedef HWND NativeWindowHandle; | |
20 #endif // defined(OS_WIN) | |
21 | |
22 } // namespace gpu_demos | |
23 #endif // GPU_DEMOS_APP_FRAMEWORK_PLATFORM_H_ | |
OLD | NEW |