| Index: extensions/renderer/console.h
|
| diff --git a/extensions/renderer/console.h b/extensions/renderer/console.h
|
| index c48cf7990b3cf95438aa22bedc2e7874c1754b92..f2b7f97d360d7eb6e2df72c9650ea6602f0f0c1c 100644
|
| --- a/extensions/renderer/console.h
|
| +++ b/extensions/renderer/console.h
|
| @@ -33,15 +33,15 @@ void AddMessage(content::RenderView* render_view,
|
| const std::string& message);
|
|
|
| // Adds |message| to the console that hosts |context|, if any.
|
| -void Debug(v8::Handle<v8::Context> context, const std::string& message);
|
| -void Log(v8::Handle<v8::Context> context, const std::string& message);
|
| -void Warn(v8::Handle<v8::Context> context, const std::string& message);
|
| -void Error(v8::Handle<v8::Context> context, const std::string& message);
|
| +void Debug(v8::Local<v8::Context> context, const std::string& message);
|
| +void Log(v8::Local<v8::Context> context, const std::string& message);
|
| +void Warn(v8::Local<v8::Context> context, const std::string& message);
|
| +void Error(v8::Local<v8::Context> context, const std::string& message);
|
|
|
| // Logs an Error then crashes the current process.
|
| -void Fatal(v8::Handle<v8::Context> context, const std::string& message);
|
| +void Fatal(v8::Local<v8::Context> context, const std::string& message);
|
|
|
| -void AddMessage(v8::Handle<v8::Context> context,
|
| +void AddMessage(v8::Local<v8::Context> context,
|
| content::ConsoleMessageLevel level,
|
| const std::string& message);
|
|
|
|
|