OLD | NEW |
(Empty) | |
| 1 // // Copyright 2013 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 #ifndef WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ |
| 6 #define WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ |
| 7 |
| 8 #include "webkit/child/webkit_child_export.h" |
| 9 #include "webkit/glue/webkitplatformsupport_impl.h" |
| 10 |
| 11 namespace webkit_glue { |
| 12 |
| 13 class WEBKIT_CHILD_EXPORT WebKitPlatformSupportChildImpl : |
| 14 public WebKitPlatformSupportImpl { |
| 15 public: |
| 16 WebKitPlatformSupportChildImpl(); |
| 17 virtual ~WebKitPlatformSupportChildImpl(); |
| 18 }; |
| 19 |
| 20 } // namespace webkit_glue |
| 21 |
| 22 #endif // WEBKIT_CHILD_WEBKITPLATFORMSUPPORT_CHILD_IMPL_H_ |
OLD | NEW |