diff options
Diffstat (limited to 'deps/v8/samples/process.cc')
-rw-r--r-- | deps/v8/samples/process.cc | 26 |
1 files changed, 24 insertions, 2 deletions
diff --git a/deps/v8/samples/process.cc b/deps/v8/samples/process.cc index 5ebe1dbfc4..7ee85a84f9 100644 --- a/deps/v8/samples/process.cc +++ b/deps/v8/samples/process.cc @@ -35,8 +35,30 @@ #include <map> #include <string> -using namespace std; -using namespace v8; +using std::map; +using std::pair; +using std::string; + +using v8::Context; +using v8::EscapableHandleScope; +using v8::External; +using v8::Function; +using v8::FunctionTemplate; +using v8::Global; +using v8::HandleScope; +using v8::Isolate; +using v8::Local; +using v8::MaybeLocal; +using v8::Name; +using v8::NamedPropertyHandlerConfiguration; +using v8::NewStringType; +using v8::Object; +using v8::ObjectTemplate; +using v8::PropertyCallbackInfo; +using v8::Script; +using v8::String; +using v8::TryCatch; +using v8::Value; // These interfaces represent an existing request processing interface. // The idea is to imagine a real application that uses these interfaces |