| Index: test/cctest/trace-extension.h
|
| diff --git a/test/cctest/trace-extension.h b/test/cctest/trace-extension.h
|
| index 186cc6e7419246e0ecacf39d89b75dc199636c07..792e437a89ff7a8e33dcf59e64fef9d5a92db192 100644
|
| --- a/test/cctest/trace-extension.h
|
| +++ b/test/cctest/trace-extension.h
|
| @@ -38,9 +38,8 @@ struct TickSample;
|
| class TraceExtension : public v8::Extension {
|
| public:
|
| TraceExtension() : v8::Extension("v8/trace", kSource) { }
|
| - virtual v8::Handle<v8::FunctionTemplate> GetNativeFunctionTemplate(
|
| - v8::Isolate* isolate,
|
| - v8::Handle<v8::String> name);
|
| + virtual v8::Local<v8::FunctionTemplate> GetNativeFunctionTemplate(
|
| + v8::Isolate* isolate, v8::Local<v8::String> name);
|
| static void Trace(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| static void JSTrace(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| static void JSEntrySP(const v8::FunctionCallbackInfo<v8::Value>& args);
|
|
|