| 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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 #include "WebURLError.h" | 55 #include "WebURLError.h" |
| 56 #include "WebVector.h" | 56 #include "WebVector.h" |
| 57 | 57 |
| 58 class GrContext; | 58 class GrContext; |
| 59 | 59 |
| 60 namespace blink { | 60 namespace blink { |
| 61 | 61 |
| 62 class WebAudioBus; | 62 class WebAudioBus; |
| 63 class WebBlobRegistry; | 63 class WebBlobRegistry; |
| 64 class WebBluetooth; | 64 class WebBluetooth; |
| 65 class WebContentDecryptionModule; | |
| 66 class WebClipboard; | 65 class WebClipboard; |
| 67 class WebCompositorSupport; | 66 class WebCompositorSupport; |
| 68 class WebConvertableToTraceFormat; | 67 class WebConvertableToTraceFormat; |
| 69 class WebCookieJar; | 68 class WebCookieJar; |
| 70 class WebCrypto; | 69 class WebCrypto; |
| 71 class WebDatabaseObserver; | 70 class WebDatabaseObserver; |
| 72 class WebDiscardableMemory; | 71 class WebDiscardableMemory; |
| 73 class WebPlatformEventListener; | 72 class WebPlatformEventListener; |
| 74 class WebFallbackThemeEngine; | 73 class WebFallbackThemeEngine; |
| 75 class WebFileSystem; | 74 class WebFileSystem; |
| 76 class WebFileUtilities; | 75 class WebFileUtilities; |
| 77 class WebFlingAnimator; | 76 class WebFlingAnimator; |
| 78 class WebGeofencingProvider; | 77 class WebGeofencingProvider; |
| 79 class WebGestureCurveTarget; | |
| 80 class WebGestureCurve; | 78 class WebGestureCurve; |
| 81 class WebGraphicsContext3DProvider; | 79 class WebGraphicsContext3DProvider; |
| 82 class WebIDBFactory; | 80 class WebIDBFactory; |
| 83 class WebMIDIAccessor; | 81 class WebMIDIAccessor; |
| 84 class WebMIDIAccessorClient; | 82 class WebMIDIAccessorClient; |
| 85 class WebMediaStreamCenter; | 83 class WebMediaStreamCenter; |
| 86 class WebMediaStreamCenterClient; | 84 class WebMediaStreamCenterClient; |
| 87 class WebMessagePortChannel; | 85 class WebMessagePortChannel; |
| 88 class WebMimeRegistry; | 86 class WebMimeRegistry; |
| 89 class WebNotificationManager; | 87 class WebNotificationManager; |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 642 | 640 |
| 643 virtual WebPushProvider* pushProvider() { return 0; } | 641 virtual WebPushProvider* pushProvider() { return 0; } |
| 644 | 642 |
| 645 protected: | 643 protected: |
| 646 virtual ~Platform() { } | 644 virtual ~Platform() { } |
| 647 }; | 645 }; |
| 648 | 646 |
| 649 } // namespace blink | 647 } // namespace blink |
| 650 | 648 |
| 651 #endif | 649 #endif |
| OLD | NEW |