Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / public / web / WebTestInterfaceFactory.h
blobb704bf4bc5340a93eda8f9b2614285ccef41e412
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.
5 #ifndef WebTestInterfaceFactory_h
6 #define WebTestInterfaceFactory_h
8 #include <v8.h>
10 namespace blink {
12 class WebTestInterfaceFactory {
13 public:
14 virtual ~WebTestInterfaceFactory() { }
15 virtual v8::Local<v8::Value> createInstance(v8::Local<v8::Context>) = 0;
18 } // namespace blink
20 #endif