Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2015 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 WebStreams_h | |
| 6 #define WebStreams_h | |
| 7 | |
| 8 #include "WebCommon.h" | |
| 9 #include "v8/include/v8.h" | |
| 10 | |
| 11 // TODO(domenic) presubmit checks don't like including v8 here ("Because of no r ule applying.") | |
| 12 | |
| 13 namespace blink { | |
| 14 | |
| 15 class WebStreams { | |
| 16 public: | |
| 17 BLINK_PLATFORM_EXPORT static v8::Extension* CreateV8Extension(); | |
| 18 }; | |
| 19 | |
| 20 } // namespace blink | |
| 21 | |
| 22 #endif // WebStreams_h | |
| OLD | NEW |