summaryrefslogtreecommitdiffstats
path: root/chrome/renderer/resources/extensions/page_capture_custom_bindings.js
blob: 0bcbb0b64ad28aa5b4cfba9e4a7c0616ea91af07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

// Custom bindings for the pageCapture API.

var pageCaptureNatives = requireNative('page_capture');
var CreateBlob = pageCaptureNatives.CreateBlob;
var SendResponseAck = pageCaptureNatives.SendResponseAck;

var chromeHidden = requireNative('chrome_hidden').GetChromeHidden();

chromeHidden.registerCustomHook('pageCapture', function(bindingsAPI) {
  var apiFunctions = bindingsAPI.apiFunctions;

  apiFunctions.setCustomCallback('saveAsMHTML',
                                 function(name, request, response) {
    var params = chromeHidden.JSON.parse(response);
    var path = params.mhtmlFilePath;
    var size = params.mhtmlFileLength;

    if (request.callback)
      request.callback(CreateBlob(path, size));
    request.callback = null;

    // Notify the browser. Now that the blob is referenced from JavaScript,
    // the browser can drop its reference to it.
    SendResponseAck(request.id);
  });
});