| OLD | NEW | 
| (Empty) |  | 
 |   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. | 
 |   4  | 
 |   5 #ifndef ScriptExecutionCallback_h | 
 |   6 #define ScriptExecutionCallback_h | 
 |   7  | 
 |   8 namespace v8 { | 
 |   9 class Value; | 
 |  10 template <class T> class Local; | 
 |  11 } | 
 |  12  | 
 |  13 namespace blink { | 
 |  14  | 
 |  15 template <typename T> class WebVector; | 
 |  16  | 
 |  17 class ScriptExecutionCallback { | 
 |  18 public: | 
 |  19     ScriptExecutionCallback(); | 
 |  20     virtual ~ScriptExecutionCallback(); | 
 |  21  | 
 |  22     virtual void completed(const WebVector<v8::Local<v8::Value> >&) = 0; | 
 |  23 }; | 
 |  24  | 
 |  25 } // namespace blink | 
 |  26  | 
 |  27 #endif // ScriptExecutionCallback_h | 
| OLD | NEW |