| 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 "chrome/common/extensions/extension_messages.h" |  | 
| 10 #include "content/public/renderer/render_view.h" | 9 #include "content/public/renderer/render_view.h" | 
|  | 10 #include "extensions/common/extension_messages.h" | 
| 11 #include "grit/renderer_resources.h" | 11 #include "grit/renderer_resources.h" | 
| 12 #include "third_party/WebKit/public/web/WebBlob.h" | 12 #include "third_party/WebKit/public/web/WebBlob.h" | 
| 13 #include "v8/include/v8.h" | 13 #include "v8/include/v8.h" | 
| 14 | 14 | 
| 15 namespace extensions { | 15 namespace extensions { | 
| 16 | 16 | 
| 17 PageCaptureCustomBindings::PageCaptureCustomBindings( | 17 PageCaptureCustomBindings::PageCaptureCustomBindings( | 
| 18     Dispatcher* dispatcher, | 18     Dispatcher* dispatcher, | 
| 19     ChromeV8Context* context) | 19     ChromeV8Context* context) | 
| 20     : ChromeV8Extension(dispatcher, context) { | 20     : ChromeV8Extension(dispatcher, context) { | 
| (...skipping 22 matching lines...) Expand all  Loading... | 
| 43   CHECK(args[0]->IsInt32()); | 43   CHECK(args[0]->IsInt32()); | 
| 44 | 44 | 
| 45   content::RenderView* render_view = GetRenderView(); | 45   content::RenderView* render_view = GetRenderView(); | 
| 46   if (render_view) { | 46   if (render_view) { | 
| 47     render_view->Send(new ExtensionHostMsg_ResponseAck( | 47     render_view->Send(new ExtensionHostMsg_ResponseAck( | 
| 48         render_view->GetRoutingID(), args[0]->Int32Value())); | 48         render_view->GetRoutingID(), args[0]->Int32Value())); | 
| 49   } | 49   } | 
| 50 } | 50 } | 
| 51 | 51 | 
| 52 }  // namespace extensions | 52 }  // namespace extensions | 
| OLD | NEW | 
|---|