Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: chrome/renderer/resources/extensions/log_private_custom_bindings.js

Issue 329853010: Additional methods for chrome.logPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2014 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 // Custom binding for the logPrivate API.
6 var binding = require('binding').Binding.create('logPrivate');
7 var sendRequest = require('sendRequest');
8
9 var getFileBindingsForApi =
10 require('fileEntryBindingUtil').getFileBindingsForApi;
11 var fileBindings = getFileBindingsForApi('logPrivate');
12 var bindFileEntryCallback = fileBindings.bindFileEntryCallback;
13
14 binding.registerCustomHook(function(bindingsAPI) {
15 var apiFunctions = bindingsAPI.apiFunctions;
16 var fileSystem = bindingsAPI.compiledApi;
17
18 $Array.forEach(['dumpLogs'],
19 function(functionName) {
20 bindFileEntryCallback(functionName, apiFunctions);
21 });
22
23 });
24
25 exports.bindFileEntryCallback = bindFileEntryCallback;
26 exports.binding = binding.generate();
OLDNEW
« no previous file with comments | « chrome/renderer/resources/extensions/file_system_custom_bindings.js ('k') | chrome/renderer/resources/renderer_resources.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698