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 26 matching lines...) Expand all Loading... |
37 | 37 |
38 #include "BlameContext.h" | 38 #include "BlameContext.h" |
39 #include "UserMetricsAction.h" | 39 #include "UserMetricsAction.h" |
40 #include "WebAudioDevice.h" | 40 #include "WebAudioDevice.h" |
41 #include "WebCommon.h" | 41 #include "WebCommon.h" |
42 #include "WebData.h" | 42 #include "WebData.h" |
43 #include "WebDeviceLightListener.h" | 43 #include "WebDeviceLightListener.h" |
44 #include "WebGamepadListener.h" | 44 #include "WebGamepadListener.h" |
45 #include "WebGamepads.h" | 45 #include "WebGamepads.h" |
46 #include "WebGestureDevice.h" | 46 #include "WebGestureDevice.h" |
47 #include "WebGraphicsContext3D.h" | |
48 #include "WebLocalizedString.h" | 47 #include "WebLocalizedString.h" |
49 #include "WebPlatformEventType.h" | 48 #include "WebPlatformEventType.h" |
50 #include "WebSize.h" | 49 #include "WebSize.h" |
51 #include "WebSpeechSynthesizer.h" | 50 #include "WebSpeechSynthesizer.h" |
52 #include "WebStorageQuotaCallbacks.h" | 51 #include "WebStorageQuotaCallbacks.h" |
53 #include "WebStorageQuotaType.h" | 52 #include "WebStorageQuotaType.h" |
54 #include "WebString.h" | 53 #include "WebString.h" |
55 #include "WebURLError.h" | 54 #include "WebURLError.h" |
56 #include "WebVector.h" | 55 #include "WebVector.h" |
57 #include "base/metrics/user_metrics_action.h" | 56 #include "base/metrics/user_metrics_action.h" |
(...skipping 564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
622 protected: | 621 protected: |
623 Platform(); | 622 Platform(); |
624 virtual ~Platform() { } | 623 virtual ~Platform() { } |
625 | 624 |
626 WebThread* m_mainThread; | 625 WebThread* m_mainThread; |
627 }; | 626 }; |
628 | 627 |
629 } // namespace blink | 628 } // namespace blink |
630 | 629 |
631 #endif | 630 #endif |
OLD | NEW |