Disable view source for Developer Tools.
[chromium-blink-merge.git] / chrome / renderer / extensions / object_backed_native_handler.cc
blobc42d2fc50ecdc6d99ca7202a745a593d5445e3db
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 // TODO(dcarney): Remove this when UnsafePersistent is removed.
6 #define V8_ALLOW_ACCESS_TO_RAW_HANDLE_CONSTRUCTOR
8 #include "chrome/renderer/extensions/object_backed_native_handler.h"
10 #include "base/logging.h"
11 #include "base/memory/linked_ptr.h"
12 #include "chrome/renderer/extensions/chrome_v8_context.h"
13 #include "chrome/renderer/extensions/console.h"
14 #include "chrome/renderer/extensions/module_system.h"
15 #include "v8/include/v8.h"
17 namespace extensions {
19 namespace {
20 // Key for the base::Bound routed function.
21 const char* kHandlerFunction = "handler_function";
22 } // namespace
24 ObjectBackedNativeHandler::ObjectBackedNativeHandler(
25 ChromeV8Context* context)
26 : context_(context),
27 object_template_(v8::ObjectTemplate::New(
28 context->v8_context()->GetIsolate())) {
31 ObjectBackedNativeHandler::~ObjectBackedNativeHandler() {
32 Invalidate();
35 v8::Handle<v8::Object> ObjectBackedNativeHandler::NewInstance() {
36 return object_template_.NewHandle(v8::Isolate::GetCurrent())->NewInstance();
39 // static
40 void ObjectBackedNativeHandler::Router(
41 const v8::FunctionCallbackInfo<v8::Value>& args) {
42 v8::HandleScope handle_scope(args.GetIsolate());
43 v8::Handle<v8::Object> data = args.Data().As<v8::Object>();
45 v8::Handle<v8::Value> handler_function_value =
46 data->Get(v8::String::NewFromUtf8(args.GetIsolate(), kHandlerFunction));
47 // See comment in header file for why we do this.
48 if (handler_function_value.IsEmpty() ||
49 handler_function_value->IsUndefined()) {
50 console::Error(args.GetIsolate()->GetCallingContext(),
51 "Extension view no longer exists");
52 return;
54 DCHECK(handler_function_value->IsExternal());
55 static_cast<HandlerFunction*>(
56 handler_function_value.As<v8::External>()->Value())->Run(args);
59 void ObjectBackedNativeHandler::RouteFunction(
60 const std::string& name,
61 const HandlerFunction& handler_function) {
62 v8::Isolate* isolate = v8::Isolate::GetCurrent();
63 v8::HandleScope handle_scope(isolate);
64 v8::Context::Scope context_scope(context_->v8_context());
66 v8::Persistent<v8::Object> data(isolate, v8::Object::New(isolate));
67 v8::Local<v8::Object> local_data = v8::Local<v8::Object>::New(isolate, data);
68 local_data->Set(
69 v8::String::NewFromUtf8(isolate, kHandlerFunction),
70 v8::External::New(isolate, new HandlerFunction(handler_function)));
71 v8::Handle<v8::FunctionTemplate> function_template =
72 v8::FunctionTemplate::New(isolate, Router, local_data);
73 object_template_.NewHandle(isolate)
74 ->Set(isolate, name.c_str(), function_template);
75 router_data_.push_back(UnsafePersistent<v8::Object>(&data));
78 void ObjectBackedNativeHandler::Invalidate() {
79 if (!is_valid())
80 return;
81 v8::Isolate* isolate = v8::Isolate::GetCurrent();
82 v8::HandleScope handle_scope(isolate);
83 v8::Context::Scope context_scope(context_->v8_context());
85 for (RouterData::iterator it = router_data_.begin();
86 it != router_data_.end(); ++it) {
87 v8::Handle<v8::Object> data = it->newLocal(isolate);
88 v8::Handle<v8::Value> handler_function_value =
89 data->Get(v8::String::NewFromUtf8(isolate, kHandlerFunction));
90 CHECK(!handler_function_value.IsEmpty());
91 delete static_cast<HandlerFunction*>(
92 handler_function_value.As<v8::External>()->Value());
93 data->Delete(v8::String::NewFromUtf8(isolate, kHandlerFunction));
94 it->dispose();
96 object_template_.reset();
97 context_ = NULL;
98 NativeHandler::Invalidate();
101 } // namespace extensions