OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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. |
| 4 |
| 5 #include "extensions/renderer/script_injection_callback.h" |
| 6 |
| 7 #include "extensions/renderer/script_injection.h" |
| 8 |
| 9 namespace extensions { |
| 10 |
| 11 ScriptInjectionCallback::ScriptInjectionCallback( |
| 12 ScriptInjection* injection, |
| 13 blink::WebLocalFrame* web_frame) |
| 14 : injection_(injection) |
| 15 , web_frame_(web_frame) { |
| 16 } |
| 17 |
| 18 ScriptInjectionCallback::~ScriptInjectionCallback() { |
| 19 } |
| 20 |
| 21 void ScriptInjectionCallback::completed( |
| 22 const blink::WebVector<v8::Local<v8::Value> >& result) { |
| 23 injection_->OnJSInjectionCompleted(web_frame_, result); |
| 24 delete this; |
| 25 } |
| 26 |
| 27 } // namespace extensions |
OLD | NEW |