OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "chrome/renderer/extensions/page_capture_custom_bindings.h" | 5 #include "chrome/renderer/extensions/page_capture_custom_bindings.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/strings/utf_string_conversions.h" | 8 #include "base/strings/utf_string_conversions.h" |
9 #include "content/public/renderer/render_view.h" | 9 #include "content/public/renderer/render_view.h" |
10 #include "extensions/common/extension_messages.h" | 10 #include "extensions/common/extension_messages.h" |
(...skipping 14 matching lines...) Expand all Loading... |
25 } | 25 } |
26 | 26 |
27 void PageCaptureCustomBindings::CreateBlob( | 27 void PageCaptureCustomBindings::CreateBlob( |
28 const v8::FunctionCallbackInfo<v8::Value>& args) { | 28 const v8::FunctionCallbackInfo<v8::Value>& args) { |
29 CHECK(args.Length() == 2); | 29 CHECK(args.Length() == 2); |
30 CHECK(args[0]->IsString()); | 30 CHECK(args[0]->IsString()); |
31 CHECK(args[1]->IsInt32()); | 31 CHECK(args[1]->IsInt32()); |
32 blink::WebString path(base::UTF8ToUTF16(*v8::String::Utf8Value(args[0]))); | 32 blink::WebString path(base::UTF8ToUTF16(*v8::String::Utf8Value(args[0]))); |
33 blink::WebBlob blob = | 33 blink::WebBlob blob = |
34 blink::WebBlob::createFromFile(path, args[1]->Int32Value()); | 34 blink::WebBlob::createFromFile(path, args[1]->Int32Value()); |
35 args.GetReturnValue().Set(blob.toV8Value(args.Holder(), args.GetIsolate())); | 35 args.GetReturnValue().Set( |
| 36 blob.toV8Value(context()->v8_context()->Global(), args.GetIsolate())); |
36 } | 37 } |
37 | 38 |
38 void PageCaptureCustomBindings::SendResponseAck( | 39 void PageCaptureCustomBindings::SendResponseAck( |
39 const v8::FunctionCallbackInfo<v8::Value>& args) { | 40 const v8::FunctionCallbackInfo<v8::Value>& args) { |
40 CHECK(args.Length() == 1); | 41 CHECK(args.Length() == 1); |
41 CHECK(args[0]->IsInt32()); | 42 CHECK(args[0]->IsInt32()); |
42 | 43 |
43 content::RenderView* render_view = context()->GetRenderView(); | 44 content::RenderView* render_view = context()->GetRenderView(); |
44 if (render_view) { | 45 if (render_view) { |
45 render_view->Send(new ExtensionHostMsg_ResponseAck( | 46 render_view->Send(new ExtensionHostMsg_ResponseAck( |
46 render_view->GetRoutingID(), args[0]->Int32Value())); | 47 render_view->GetRoutingID(), args[0]->Int32Value())); |
47 } | 48 } |
48 } | 49 } |
49 | 50 |
50 } // namespace extensions | 51 } // namespace extensions |
OLD | NEW |