| Index: src/api.cc
 | 
| diff --git a/src/api.cc b/src/api.cc
 | 
| index a6ea44eddc920b2b03f8cc60185e53279458641e..491119bc37a0a433ab58a2cc2226d335607e5aea 100644
 | 
| --- a/src/api.cc
 | 
| +++ b/src/api.cc
 | 
| @@ -6716,6 +6716,11 @@ bool Isolate::WillAutorunMicrotasks() const {
 | 
|  }
 | 
|  
 | 
|  
 | 
| +void Isolate::SetUseCounterCallback(UseCounterCallback callback) {
 | 
| +  reinterpret_cast<i::Isolate*>(this)->SetUseCounterCallback(callback);
 | 
| +}
 | 
| +
 | 
| +
 | 
|  String::Utf8Value::Utf8Value(v8::Handle<v8::Value> obj)
 | 
|      : str_(NULL), length_(0) {
 | 
|    i::Isolate* isolate = i::Isolate::Current();
 | 
| 
 |