| Index: test/cctest/print-extension.h
|
| diff --git a/test/cctest/print-extension.h b/test/cctest/print-extension.h
|
| index c2961d0dd110b3f15e5d6c54bfbcc891d5923d34..74d74ef81b5b6caad82781ba0e5e966f5ed4d7c1 100644
|
| --- a/test/cctest/print-extension.h
|
| +++ b/test/cctest/print-extension.h
|
| @@ -36,9 +36,8 @@ namespace internal {
|
| class PrintExtension : public v8::Extension {
|
| public:
|
| PrintExtension() : v8::Extension("v8/print", "native function print();") { }
|
| - 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 Print(const v8::FunctionCallbackInfo<v8::Value>& args);
|
| };
|
|
|
|
|