forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsole.cc
39 lines (29 loc) · 944 Bytes
/
console.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "gin/modules/console.h"
#include <stdio.h>
#include "base/strings/string_util.h"
#include "gin/arguments.h"
#include "gin/converter.h"
namespace gin {
namespace {
void Log(const v8::FunctionCallbackInfo<v8::Value>& info) {
Arguments args(info);
std::vector<std::string> messages;
if (!args.GetRemaining(&messages)) {
args.ThrowError();
return;
}
printf("%s\n", base::JoinString(messages, " ").c_str());
}
} // namespace
// static
void Console::Register(v8::Isolate* isolate,
v8::Local<v8::ObjectTemplate> templ) {
v8::Local<v8::FunctionTemplate> log_templ =
v8::FunctionTemplate::New(isolate, Log);
log_templ->RemovePrototype();
templ->Set(StringToSymbol(isolate, "log"), log_templ);
}
} // namespace gin