Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / public / web / WebScriptExecutionCallback.h
blob44b377a1533867610d08219c9025f28a1a8e64e5
1 // Copyright 2014 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 WebScriptExecutionCallback_h
6 #define WebScriptExecutionCallback_h
8 namespace v8 {
9 class Value;
10 template <class T> class Local;
13 namespace blink {
15 template <typename T> class WebVector;
17 class WebScriptExecutionCallback {
18 public:
19 virtual ~WebScriptExecutionCallback() { }
21 // Method to be invoked when the asynchronous script execution is complete.
22 // After function call all objects in vector will be collected
23 virtual void completed(const WebVector<v8::Local<v8::Value> >&) { }
26 } // namespace blink
28 #endif // WebScriptExecutionCallback_h