| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 | 33 |
| 34 #ifdef WIN32 | 34 #ifdef WIN32 |
| 35 #include <windows.h> | 35 #include <windows.h> |
| 36 #endif | 36 #endif |
| 37 | 37 |
| 38 #include "WebAudioDevice.h" | 38 #include "WebAudioDevice.h" |
| 39 #include "WebBatteryStatusListener.h" | 39 #include "WebBatteryStatusListener.h" |
| 40 #include "WebCommon.h" | 40 #include "WebCommon.h" |
| 41 #include "WebData.h" | 41 #include "WebData.h" |
| 42 #include "WebDeviceLightListener.h" | 42 #include "WebDeviceLightListener.h" |
| 43 #include "WebDeviceMotionListener.h" | |
| 44 #include "WebDeviceOrientationListener.h" | |
| 45 #include "WebGamepadListener.h" | 43 #include "WebGamepadListener.h" |
| 46 #include "WebGamepads.h" | 44 #include "WebGamepads.h" |
| 47 #include "WebGestureDevice.h" | 45 #include "WebGestureDevice.h" |
| 48 #include "WebGraphicsContext3D.h" | 46 #include "WebGraphicsContext3D.h" |
| 49 #include "WebLocalizedString.h" | 47 #include "WebLocalizedString.h" |
| 50 #include "WebPlatformEventType.h" | 48 #include "WebPlatformEventType.h" |
| 51 #include "WebSize.h" | 49 #include "WebSize.h" |
| 52 #include "WebSpeechSynthesizer.h" | 50 #include "WebSpeechSynthesizer.h" |
| 53 #include "WebStorageQuotaCallbacks.h" | 51 #include "WebStorageQuotaCallbacks.h" |
| 54 #include "WebStorageQuotaType.h" | 52 #include "WebStorageQuotaType.h" |
| (...skipping 631 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 protected: | 684 protected: |
| 687 BLINK_PLATFORM_EXPORT Platform(); | 685 BLINK_PLATFORM_EXPORT Platform(); |
| 688 virtual ~Platform() { } | 686 virtual ~Platform() { } |
| 689 | 687 |
| 690 WebThread* m_mainThread; | 688 WebThread* m_mainThread; |
| 691 }; | 689 }; |
| 692 | 690 |
| 693 } // namespace blink | 691 } // namespace blink |
| 694 | 692 |
| 695 #endif | 693 #endif |
| OLD | NEW |